Skip to main content
Glama
Ownership verified

Server Details

CometChat docs search + implementation bundles: add chat, voice, video & moderation to your app.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cometchat/docs-mcp
GitHub Stars
37
Server Listing
CometChat Docs

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching a specific page, getting a curated implementation bundle, and searching across docs. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_cometchat_noun pattern (e.g., fetch_cometchat_doc_page, get_cometchat_implementation_bundle), making them predictable and easy to distinguish.

Tool Count5/5

With 3 tools, the server is well-scoped for its purpose of accessing CometChat documentation. Each tool serves a distinct need without being too few or too many.

Completeness4/5

The core operations of fetching a page and searching are covered. The addition of implementation bundles adds value, but a tool to list available bundles or sections is missing, which agents might need for discovery.

Available Tools

3 tools
fetch_cometchat_doc_pageFetch CometChat Documentation PageA
Read-only
Inspect

Fetches the full content of a single CometChat documentation page by URL or path. Returns the page content as markdown along with title and section metadata. Path can be passed as a full https://www.cometchat.com/docs URL or as a relative path such as '/sdk/javascript/overview'.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesDocumentation path or full URL. Relative paths like '/sdk/javascript/overview' and full URLs both work.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and description confirms read operation. Adds specific return format details (markdown, title, section metadata). No disclosure of rate limits or auth, but read-only nature is clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with clear front-loading. First sentence states purpose, second clarifies input format. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers input, output (markdown, metadata), and relationship to sibling tools. Lacks error handling or authentication details, but overall adequate for a simple read tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear parameter description. Description reiterates path flexibility but adds no new parameter semantics beyond what schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Describes fetching a single CometChat documentation page by URL or path, returning markdown content and metadata. Distinct from sibling tools that search or fetch implementation bundles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use vs. alternatives or when not to use. The purpose implies use for single page retrieval, but sibling selection criteria are not discussed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_cometchat_implementation_bundleGet CometChat Implementation BundleA
Read-only
Inspect

Returns a curated implementation bundle for a named CometChat integration scenario. Each bundle includes prerequisites, install commands, configuration, working code examples, and common pitfalls. Available bundles cover common integration patterns across React, Flutter, iOS, Android, React Native, and the JavaScript SDK.

ParametersJSON Schema
NameRequiredDescriptionDefault
bundleYesBundle name in lowercase kebab-case, e.g. 'react-uikit-quickstart'.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true. Description adds rich behavioral context: bundle content (prerequisites, install commands, code examples, pitfalls) and platform coverage (React, Flutter, etc.), which is beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences that efficiently convey purpose and content. No redundant information. The key details are front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with one parameter and no output schema, the description covers what the bundle includes and which platforms it's for. Lacks mention of return format but is sufficient given the straightforward nature.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% coverage with a detailed description including format and example. Tool description does not add further parameter-level information beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool returns a curated implementation bundle for a named CometChat integration scenario. Specifies the verb 'returns', the resource 'bundle', and differentiates from sibling tools that fetch general doc pages or search docs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implied usage when needing a complete bundle for a specific integration pattern. Does not explicitly state when not to use or compare with siblings like fetch_cometchat_doc_page.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_cometchat_docsSearch CometChat DocumentationA
Read-only
Inspect

Searches CometChat documentation including SDK guides (JavaScript, React, iOS, Android, Flutter, React Native), UI Kit references, REST API documentation, integration tutorials, and OpenAPI specs. Returns ranked snippets with titles and direct links to source pages. Supports an optional version filter to scope results to a specific documentation version.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return. Default 10, maximum 25.
queryYesSearch query. 1–500 characters.
versionNoOptional documentation version filter, e.g. 'v4' or 'v3'.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations provide readOnlyHint=true. Description adds that the tool returns ranked snippets with titles and direct links, which is valuable behavioral context beyond the annotation. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no redundancy: first sentence states purpose and scope, second describes output, third mentions optional filter. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple search tool with 3 parameters and no output schema, the description adequately covers what is searched, output format, and optional version filter. It is complete enough for an agent to understand its use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the description does not need to repeat parameter details. It adds minor value by highlighting the version filter's purpose. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses specific verb 'searches' and clearly lists the scope of documentation (SDK guides, UI Kit, REST API, etc.). It distinguishes itself from siblings (fetch_cometchat_doc_page and get_cometchat_implementation_bundle) by being a search tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description implies usage for searching documentation but does not explicitly state when to use this tool instead of siblings or mention prerequisites or exclusions. Guidance is minimal.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.