Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: search_docs is the cross-cutting entry point, list_* tools provide overviews, and get_* tools retrieve specific details for endpoints, webhooks, and guides. There is no overlap or ambiguity between them.

    Naming Consistency5/5

    All tool names follow the consistent verb_noun pattern: search_docs, list_endpoints, get_endpoint, list_webhooks, get_webhook, list_guides, get_guide. The verbs (search, list, get) and nouns are uniformly applied across the three resource types.

    Tool Count5/5

    Seven tools is well-scoped for a documentation explorer. Each tool serves a necessary role in the search/list/detail workflow, and there are no redundant or missing operations.

    Completeness5/5

    The tool set fully covers the stated purpose of exploring Pancake API documentation: search across all content, list all endpoints/webhooks/guides, and retrieve full details for each. There are no obvious gaps or dead ends in the workflow.

  • Average 4.5/5 across 7 of 7 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 2 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

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

    No annotations are provided, so the description carries the full burden. It thoroughly discloses the output format (markdown) and enumerates all included content: base URLs, authentication, parameters, request body schema, response schema, expanded $refs, and examples. It does not mention potential errors or rate limits, but for a read-only retrieval tool, the behavioral transparency is strong.

    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?

    The description is compact, consisting of two sentences. The first sentence states what the tool does and lists the contents; the second directs how to obtain the id. Every sentence adds value without redundancy, and the structure front-loads the core purpose.

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

    Completeness5/5

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

    Given the tool's simplicity (one parameter) and the absence of an output schema, the description fully covers the return value by listing exactly what the markdown includes. It also provides the prerequisite context about the id source. There are no significant gaps in understanding how to invoke the tool or what to expect.

    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?

    The schema already describes the id parameter with an example and format, and schema coverage is 100%. The description adds marginal value by specifying the id comes from search_docs/list_endpoints, but this is more usage guidance than parameter semantics. With high schema coverage, a baseline of 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?

    The description begins with a specific verb and resource: 'Get the full contract of a single Pancake REST API endpoint as markdown.' This clearly distinguishes it from siblings like search_docs and list_endpoints, which return listings, and get_webhook/get_guide, which target different resource types. The tool's unique function is unambiguous.

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

    Usage Guidelines4/5

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

    The description explicitly instructs 'Pass an id from search_docs or list_endpoints,' connecting the tool to its discovery workflow. While it doesn't explicitly state when not to use it, the guidance implies it should be used after obtaining an endpoint id, and sibling tool names provide context for alternatives. This is clear but lacks explicit exclusions.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden. It discloses that the tool returns the full narrative text and mentions the type of content included. It doesn't discuss side effects (none expected for a read operation) or potential errors, but the read-only nature is clear from 'Get'.

    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, front-loaded with the primary purpose, followed by specific return content and id guidance. No redundant wording or unnecessary detail.

    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 single-parameter read tool, the description covers purpose, return type, and id source. The lack of an output schema is mitigated by describing the narrative text. It's complete enough for an agent to call correctly, though it could optionally mention the response format.

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

    Parameters4/5

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

    Schema coverage is 100% with a detailed id description and examples. The description adds extra semantic guidance by instructing to pass an id from list_guides or search_docs, reinforcing provenance and usage beyond the schema.

    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?

    The description clearly states the verb 'Get' and the resource 'full text of a single Pancake API guide section'. It distinguishes from siblings like list_guides (listing) and get_endpoint/get_webhook (specific API/webhook details) by focusing on narrative documentation content.

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

    Usage Guidelines4/5

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

    Provides clear context on when to use: 'Pass an id from list_guides or search_docs' implies a preceding lookup step. It doesn't explicitly name alternatives or exclusions, but the description of return content (authentication, rate limits, integration flow) signals the appropriate use case compared to endpoint/webhook tools.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the burden of behavioral disclosure. It does mention that the guides cover authentication, rate limits, usage flow, webhooks, etc., but does not explicitly state the return format, whether it is read-only, or if there are any rate limits. This is adequate but not fully transparent.

    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?

    The description is concise and front-loaded: the first sentence states the purpose, the second expands on content and provides a pointer to get_guide. Every sentence earns its place with 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?

    For a simple listing tool with no parameters and no output schema, the description is quite complete. It tells what the list contains, lists example topics, and directs to get_guide for full text. It could mention the return format explicitly, but this is not essential given the low complexity.

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

    Parameters4/5

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

    The tool has zero parameters, so the baseline is 4. The description adds useful context about the list content (concepts and topics) without needing to explain parameters.

    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?

    The description clearly states the tool's function: 'List the Pancake API guide sections (narrative documentation).' This specifies the verb (list), the resource (guide sections), and clarifies these are narrative docs rather than endpoints, distinguishing it from sibling tools like list_endpoints.

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

    Usage Guidelines5/5

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

    The description explains that these guides cover concepts rather than a single endpoint, and explicitly points to get_guide for the full text. This provides clear context for when to use this tool versus alternatives.

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

  • Behavior4/5

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

    With no annotations, the description carries full burden. It transparently discloses the return content: event description, payload structure with expanded $ref schemas, and a sample JSON body. This gives a clear picture of the tool's behavior and output, though it doesn't cover error handling or edge cases, which are less critical for a read-only get operation.

    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?

    The description is three sentences, each earning its place: first states the primary action, second details the return value, third gives parameter sourcing guidance. It is front-loaded, concise, and free of redundancy.

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

    Completeness5/5

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

    For a simple single-parameter read operation, the description is complete. It covers what the tool does, what it returns, and how to find valid parameters. There is no output schema, and the description sufficiently explains the output structure without needing to enumerate all fields.

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

    Parameters4/5

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

    Schema coverage is 100% for the 'event' parameter. The description adds further meaning by stating the event name should come from list_webhooks or search_docs, providing sourcing guidance beyond the schema's example list. This elevates the baseline from 3 to 4.

    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?

    The description clearly states the tool's purpose: 'Get the full payload schema and an example for a single Pancake webhook event.' It uses a specific verb ('get'), identifies the resource (Pancake webhook event), and distinguishes it from siblings like get_endpoint and list_webhooks by focusing on webhook payload schemas.

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

    Usage Guidelines4/5

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

    The description provides clear context on usage: it tells the user to pass an event name from list_webhooks or search_docs, implying when this tool is appropriate (when you need details for a single event). It doesn't explicitly state when not to use it, but the mention of 'single' and references to other tools provide effective guidance.

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

  • Behavior4/5

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

    With no annotations, the description carries the burden of disclosure. It discloses that results are grouped by tag, and each endpoint includes id, method, path, and summary. It also notes the optional filters. This is solid transparency, though it omits details like pagination or auth, which are not critical for a listing tool.

    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?

    The description is two sentences, front-loaded with purpose, then explains return format and links to the next step. Every sentence adds value, with no fluff or repetition.

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

    Completeness5/5

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

    The tool is simple (optional filters, no output schema), and the description fully covers its behavior, return fields, grouping, and relationship to get_endpoint. Nothing important is missing for a list tool of this complexity.

    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 schema already fully documents both parameters. The description reinforces that both filters are optional and what they filter on, but adds no new semantic detail beyond what the schema provides, so 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?

    The description begins with a specific verb+resource: 'List all Pancake REST API endpoints, grouped by tag.' It clearly distinguishes from sibling tools by noting the returned id can be passed to get_endpoint for the full contract, making its role as a high-level list endpoint explicit.

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

    Usage Guidelines5/5

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

    The description explicitly names get_endpoint as the alternative for full contract details, effectively telling the agent when to use this tool vs another. It also explains optional filtering by tag or keyword, which guides usage.

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

  • Behavior4/5

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

    With no annotations, the description carries the burden and does well: it discloses the search scope, ranked results, and result contents (type, id, snippet). It doesn't explicitly state read-only behavior, but the description makes it clear this is a search operation returning matches, which is sufficient for a safe tool.

    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, each serving a distinct purpose: core action, workflow, and scope/result detail. No fluff, tightly written, and front-loaded with the key action.

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

    Completeness5/5

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

    The description fully equips the agent to use the tool: it explains the result format (type, id, snippet) even without an output schema, and ties into sibling tools for the next step. Coupled with fully described parameters, it is complete for a search tool.

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

    Parameters4/5

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

    Schema coverage is 100%, so baseline is 3. The description adds value beyond the schema by explaining what the 'area' parameter maps to (REST endpoints, webhooks, guide sections, schemas), giving the agent a richer understanding of enumeration values. This elevates it above baseline.

    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?

    The description clearly states the tool searches the entire Pancake API documentation and returns ranked matches, with explicit scope (REST endpoints, webhooks, guides, schemas). It distinguishes itself from sibling get_* and list_* tools by positioning itself as the entry point for discovery.

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

    Usage Guidelines4/5

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

    Provides explicit workflow: 'search first, then fetch full detail with get_endpoint, get_webhook, or get_guide using the returned id.' This gives clear contextual guidance but does not explicitly state exclusions or when not to use the tool (e.g., 'use list_endpoints to browse all endpoints instead'), so it falls short of a 5.

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

  • Behavior4/5

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

    With no annotations, the description carries the burden of explaining behavior. It states the output (each event's name and summary) and clarifies the nature of webhooks ('HTTP POST notifications... in real time'). While it doesn't mention potential limitations like pagination or auth, the tool's simple list behavior is sufficiently disclosed. No contradictions with existing annotations (none provided).

    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?

    The description is compact: a lead sentence stating the core function, a sentence explaining the return value and a pointer to get_webhook, and a brief definition of webhooks. Every sentence earns its place, with no fluff. The structure is front-loaded with the primary action.

    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?

    The tool is simple (no params, no output schema), and the description covers the essential return information (name and summary) and the next-step guidance (get_webhook). It lacks details on potential edge cases like empty lists or ordering, but given the tool's simplicity, it is reasonably complete. The mention of webhook semantics adds useful context.

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

    Parameters4/5

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

    The tool has zero parameters, and the schema is empty. Per the rubric, a baseline of 4 is appropriate when no parameters need explanation. The description adds no parameter-specific details because there are none, but this does not reduce the score.

    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?

    The description starts with a specific verb+resource: 'List all Pancake webhook events.' It clearly identifies the tool's function as a listing operation and distinguishes itself from siblings like get_webhook (which fetches a single webhook's details) by focusing on the enumeration of all events.

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

    Usage Guidelines5/5

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

    The description explicitly directs users to 'Pass an event name to get_webhook for the full payload schema and an example,' providing a concrete alternative for deeper investigation. This clearly states when to use this tool (to see available events) versus another tool (to get detailed payload info).

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

pancake-api-mcp MCP server

Copy to your README.md:

Score Badge

pancake-api-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/pancake-vn/pancake-api-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server