Skip to main content
Glama
kapruka

Review Guru MCP Server

by kapruka

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DATABASE_URLNoIf set to an existing SQLite path, server uses local DB instead of HTTP. Maintainer-only.
REVIEWGURU_APINoAPI base URL – default is https://reviewguru.lkhttps://reviewguru.lk
REVIEWGURU_URLNoUsed to render business URLs in tool output – default is https://reviewguru.lkhttps://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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
aboutHuman-readable description of the Review Guru MCP server.

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

Six tools is an appropriate number for a review server, covering discovery, search, and details without unnecessary bloat or deficiency.

Completeness5/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues