Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"reviewguru": {
"args": [
"reviewguru-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that exposes Sri Lankan business reviews and doctor profiles from Review Guru to Claude Desktop, Cursor, Cline, or any MCP-aware AI agent.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'reviewguru-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked reviewguru-mcp against OSV.dev.
Click any tool to inspect its schema.
reviewguru://aboutReturns live counts of businesses and doctors
reviewguru://about
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.kapruka/reviewguru and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that exposes Sri Lankan business reviews and doctor profiles from Review Guru to Claude Desktop, Cursor, Cline, or any MCP-aware AI agent.
No API key. No scraping. Calls a public, cached, rate-limited HTTPS endpoint.
| Tool | What it does |
|---|---|
list_businesses(city?, category?, min_rating?, sort?, limit?) | Ranked list of businesses. Sort: top, most-reviewed, newest. |
get_business(slug) | Full profile: address, phone, hours, categories, rating breakdown, top 10 reviews. |
get_reviews(slug, sort?, limit?) | Paginated reviews. Sort: newest, highest, lowest, helpful. |
search(query, limit?) | Full-text search (FTS5) across every business and doctor. |
list_categories() | Top-level categories + sub-categories with slugs. |
list_cities() | Sri Lankan cities with business counts. |
Plus a reviewguru://about resource that returns live counts.
Data covers restaurants, hotels, shops, salons, hospitals, Sri Lankan doctors with specialty + practice locations, and more — all with patient/ customer reviews.
uvx reviewguru-mcp
pipx install reviewguru-mcp
reviewguru-mcp
pip install reviewguru-mcp
reviewguru-mcp
The server speaks MCP over stdio — invoke it from any MCP client config.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"reviewguru": {
"command": "uvx",
"args": ["reviewguru-mcp"]
}
}
}
Restart Claude Desktop. The 🔌 icon in chat will show the Review Guru tools.
Settings → MCP → Add new MCP server:
uvxreviewguru-mcpCline → Settings → MCP Servers → Add:
{
"reviewguru": {
"command": "uvx",
"args": ["reviewguru-mcp"]
}
}
Once wired up, ask your assistant things like:
Find me three highly-rated cardiologists in Colombo and tell me which hospital each one consults at.
What are people saying about Ministry of Crab? Pull the most recent five reviews.
I'm a vegetarian visiting Galle for a weekend — recommend two restaurants.
The model will pick the right tools and stitch the answers together.
Environment variables (all optional):
| Variable | Default | Effect |
|---|---|---|
REVIEWGURU_API | https://reviewguru.lk | API base URL — point at staging or a fork. |
REVIEWGURU_URL | https://reviewguru.lk | Used to render business URLs in tool output. |
DATABASE_URL | (none) | If set to an existing SQLite path, server uses local DB instead of HTTP. Maintainer-only. |
The public API is shared and lightly rate-limited (60 req/min per IP). For
heavier usage, set REVIEWGURU_API to your own deployment.
Reviews are licensed for citation with attribution to Review Guru and a link back to the specific business URL. See reviewguru.lk/llms.txt for full LLM-usage guidelines.
Want to fork? The server is one Python file (server.py). It auto-detects:
/api/v1 endpoints. Works anywhere.data/reviewguru.db is present in the parent dir.
Used by the maintainers for sub-millisecond local queries.git clone https://github.com/kapruka/reviewguru-mcp
cd reviewguru-mcp
pip install -e .
reviewguru-mcp