ReviewReply MCP Server
An MCP server that generates professional and context-aware responses to customer reviews using Claude AI. It supports multiple tones and business types to provide tailored feedback variations for both positive and negative reviews.
README
ReviewReply MCP Server
An MCP (Model Context Protocol) server that generates professional responses to customer reviews using Claude AI.
Features
- Tool:
generate_review_reply- Generate 3 variations of professional review responses - Supports multiple tones: professional, friendly, empathetic, grateful
- Works for any business type
- Handles both positive and negative reviews appropriately
Installation
npm install
Configuration
Set your Anthropic API key:
export ANTHROPIC_API_KEY=your-key-here
Usage
With Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"reviewreply": {
"command": "node",
"args": ["/path/to/reviewreply-mcp/src/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}
Direct Usage
npm start
The server communicates via stdio using the MCP protocol.
Tool: generate_review_reply
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
review_text |
string | Yes | The customer review text to respond to |
tone |
string | Yes | One of: professional, friendly, empathetic, grateful |
business_name |
string | Yes | Name/type of business (e.g., "Italian Restaurant") |
stars |
number | No | Star rating 1-5 (defaults to 4) |
Example
{
"review_text": "The food was amazing but service was slow",
"tone": "empathetic",
"business_name": "Italian Restaurant",
"stars": 3
}
Output
Returns 3 response variations formatted as:
**Option 1** (empathetic):
Thank you so much for your feedback! We're thrilled you enjoyed our food...
---
**Option 2** (empathetic - variation):
We really appreciate you taking the time to share your experience...
---
**Option 3** (empathetic - alternative):
Your feedback means a lot to us...
Testing
npm test
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.
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.
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.
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.