ProofBase MCP Server
An AI-powered server that generates realistic, customizable customer testimonials with specific tones, roles, and performance metrics. It enables users to create authentic social proof content through simple natural language prompts.
README
ProofBase MCP Server
An MCP (Model Context Protocol) server for generating realistic customer testimonials using AI. Part of the ProofBase testimonial management ecosystem.
Features
- AI-Powered Generation: Uses Claude to create authentic-sounding testimonials
- Customizable Tone: Choose between professional, casual, or enthusiastic styles
- Flexible Output: Includes customer name, role, company, avatar, and rating
- Metric Support: Optionally include specific metrics for credibility
Installation
npm install proofbase-mcp
Or install from source:
git clone <repo>
cd mcp-servers/proofbase-mcp
npm install
npm run build
Configuration
Set your Anthropic API key:
export ANTHROPIC_API_KEY=your-key-here
Usage with Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"proofbase": {
"command": "node",
"args": ["/path/to/proofbase-mcp/dist/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}
Available Tools
generate_testimonial
Generate a realistic customer testimonial.
Inputs:
| Parameter | Type | Required | Description |
|---|---|---|---|
product_name |
string | ✅ | Name of the product |
customer_type |
string | ✅ | Type of customer (e.g., "SaaS founder", "Marketing manager") |
outcome |
string | ✅ | Key benefit to highlight (e.g., "increased conversions") |
tone |
string | ❌ | One of: "professional", "casual", "enthusiastic" (default: professional) |
include_metrics |
boolean | ❌ | Whether to include specific numbers (default: true) |
Example Output:
{
"name": "Sarah Chen",
"role": "Head of Marketing",
"company": "Flowstate",
"avatar": "SC",
"text": "ProofBase completely transformed how we showcase customer love. Our conversion rate jumped 34% after adding the wall of love to our landing page.",
"rating": 5
}
Example Usage
User: Generate a testimonial for ProofBase from a startup founder who saw increased conversions
Tool Call: generate_testimonial
{
"product_name": "ProofBase",
"customer_type": "startup founder",
"outcome": "increased conversions",
"tone": "enthusiastic"
}
Result:
{
"name": "Marcus Johnson",
"role": "Founder & CEO",
"company": "Launchpad.io",
"avatar": "MJ",
"text": "Game-changer! We added ProofBase testimonials to our landing page and saw a 47% lift in signups within the first week. The setup was ridiculously easy.",
"rating": 5
}
Development
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run tests
npm test
Testing
# Run unit tests
npm test
# Test the server manually
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node dist/index.js
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.