review-intelligence-mcp-server
Server Details
G2, Trustpilot, Yelp reviews with sentiment and theme extraction across sources.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 3 of 3 tools scored.
Each tool targets a distinct review platform (G2, Trustpilot, Yelp), with clear names and descriptions that make it impossible to confuse them. An agent can easily select the correct tool based on the desired source.
All tool names follow the consistent pattern of `source_reviews`, using snake_case. This predictability allows an agent to infer functionality quickly.
With only 3 tools, the server is tightly scoped to its purpose of fetching reviews from popular platforms. Each tool adds clear value, and the count is appropriate for a focused integration.
The tool set covers three major review platforms, which is reasonable for a review intelligence server. A minor gap exists (e.g., missing Google Reviews), but the core functionality is well-covered and no dead ends are present.
Available Tools
3 toolsg2_reviewsARead-onlyInspect
Get G2 software reviews. Returns ratings, pros, cons, use cases.
Args: product: Software product name (e.g. 'Salesforce') max_results: Max reviews (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| product | Yes | ||
| max_results | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that it returns ratings, pros, cons, and use cases, but does not disclose any additional behavioral aspects such as data freshness, rate limits, or potential errors. It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two opening sentences followed by a brief Args block. It is front-loaded and contains no filler. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two parameters and no output schema, the description sufficiently conveys what is returned (ratings, pros, cons, use cases). However, it does not mention pagination, result ordering, or any filtering beyond 'max_results', which might be needed for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, but the description compensates by explaining the 'product' parameter with an example and 'max_results' with its default and meaning. This adds value beyond the schema's bare type definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The tool name 'g2_reviews' combined with the description 'Get G2 software reviews' clearly states the action (get) and resource (G2 reviews). It distinguishes itself from sibling tools trustpilot_reviews and yelp_reviews by specifying the platform.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates that this tool is for retrieving G2 reviews. While it does not explicitly state when not to use it or provide alternatives, the context of sibling tools makes the usage domain clear. No further guidance is given, but it is adequate for a single-platform tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trustpilot_reviewsARead-onlyInspect
Get Trustpilot reviews for a company. Returns ratings, review text, dates.
Args: company: Company name or Trustpilot URL slug (e.g. 'amazon.com') max_results: Max reviews (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| company | Yes | ||
| max_results | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds the return fields (ratings, review text, dates), which is useful but does not disclose additional behaviors like pagination or rate limits. The description does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (three short lines), front-loaded with the purpose, and every sentence provides essential information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 parameters, no nested objects), the description adequately covers purpose, parameter semantics, and return values. No output schema exists, but the return fields are listed. Minor omission: no mention of pagination or error handling, but this does not significantly hinder use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description explains the 'company' parameter as 'Company name or Trustpilot URL slug (e.g. 'amazon.com')' and 'max_results' as 'Max reviews (default 20)'. This adds meaningful context beyond the schema's type and default values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get', the resource 'Trustpilot reviews', and specifies the return values (ratings, review text, dates). This distinguishes it from sibling tools like g2_reviews and yelp_reviews by naming the platform.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives (g2_reviews, yelp_reviews). There is no mention of prerequisites, exclusions, or contextual tipping points.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
yelp_reviewsARead-onlyInspect
Get Yelp business reviews. Returns ratings, review text, photos.
Args: business: Business name or type (e.g. 'pizza') location: City (optional, e.g. 'Chicago') max_results: Max results (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| business | Yes | ||
| location | No | ||
| max_results | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. Description adds that it returns photos, which is a behavioral detail, but does not disclose rate limits, authentication needs, or potential errors. With annotations covering the safety profile, description adds marginal value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is concise: one sentence for purpose followed by an Args block. Front-loaded with purpose. No wasted words, though the Args block could be integrated more naturally. Still efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 parameters and no output schema, the description covers purpose and parameter usage fairly well. However, it lacks details about output format, error messages, or any prerequisites. While adequate for a simple read-only tool, it leaves some gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description includes an Args section that explains each parameter with examples (e.g., 'pizza' for business, 'Chicago' for location, default 20 for max_results). This adds meaning beyond the schema's type and default fields, helping the agent understand usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Get Yelp business reviews' with specific verb and resource. Examples of returned data (ratings, review text, photos) further clarify purpose. Distinguishes from sibling tools g2_reviews and trustpilot_reviews by explicitly naming Yelp.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus siblings. Agent can infer from the name and description that it's for Yelp, but no when-not or alternatives mentioned. Adequate but not helpful for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!