Review Guru MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DATABASE_URL | No | If set to an existing SQLite path, server uses local DB instead of HTTP. Maintainer-only. | |
| REVIEWGURU_API | No | API base URL – default is https://reviewguru.lk | https://reviewguru.lk |
| REVIEWGURU_URL | No | Used to render business URLs in tool output – default is https://reviewguru.lk | https://reviewguru.lk |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_businessesA | List Sri Lankan businesses with optional filters. Args: city: City slug (e.g. "colombo", "nugegoda", "dehiwala"). Use list_cities() to discover. category: Category slug (e.g. "restaurants", "shopping", "doctors"). Use list_categories() to discover. min_rating: Minimum average rating 1-5. sort: "top" (Bayesian-weighted best), "most-reviewed", or "newest". limit: Max results, 1-100 (default 25). |
| get_businessA | Get full details of a single business by slug, including location, contact info, categories, and the top 10 recent reviews. |
| get_reviewsB | Get reviews for a business. Args: slug: Business slug. sort: "newest", "highest", "lowest", or "helpful". limit: Max reviews, 1-100 (default 20). |
| searchA | Full-text search across all businesses. Uses SQLite FTS5 server-side. Args: query: Free text — name, cuisine, neighborhood, doctor specialty, etc. limit: Max results, 1-50 (default 20). |
| list_categoriesA | List all categories with their parent/child hierarchy. |
| list_citiesA | List all cities on the platform with counts of listed businesses. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| about | Human-readable description of the Review Guru MCP server. |
TDQS
Scored across 6 tools
Each tool serves a clearly distinct purpose: get a single business, get reviews, list businesses with filters, list categories, list cities, and search. No overlap in functionality.
Most tools follow a verb_noun pattern (get_business, get_reviews, list_businesses, list_categories, list_cities), but 'search' lacks a noun suffix, creating a minor inconsistency.
Six tools is an appropriate number for a review server, covering discovery, search, and details without unnecessary bloat or deficiency.
The set provides full read-only coverage: discover categories/cities, list and search businesses, get details, and retrieve reviews. No missing operations for a read-only API.