Skip to main content
Glama
KodyDennon

Statly Docs MCP Server

by KodyDennon

Statly Docs MCP Server

Model Context Protocol server for Statly documentation. Enables AI agents to search and retrieve Statly SDK and API documentation.

Installation

npm install statly-docs-mcp

Usage with Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "statly-docs": {
      "command": "npx",
      "args": ["statly-docs-mcp"]
    }
  }
}

Usage with Claude Code

claude mcp add statly-docs -- npx statly-docs-mcp

Available Tools

search_docs

Search Statly documentation for a topic.

query: "express integration"

get_sdk_reference

Get SDK API reference for a specific language.

language: "javascript" | "python" | "go"

get_code_example

Get a code example for a specific use case.

language: "javascript" | "python" | "go"
topic: "installation" | "init" | "capture_error" | "user_context" | "breadcrumbs"

get_api_reference

Get REST API reference information.

Resources

The server provides access to the llms.txt documentation:

uri: statly://docs/llms.txt

Development

pnpm install
pnpm build
pnpm start

Available Tools

4 tools
get_api_referenceC

Get REST API reference information

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2.9/5.0
Behavior2/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 of behavioral disclosure. It states the tool retrieves information (implying a read-only operation) but doesn't specify what format the information is in, whether it's paginated, if authentication is required, or any rate limits. This leaves significant gaps for a tool with no annotation coverage.

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 a single, efficient sentence with no wasted words. It's front-loaded with the core purpose, making it easy for an agent to parse quickly. Every word earns its place in conveying the tool's intent.

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

Completeness2/5

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

Given the tool has no annotations, no output schema, and a vague purpose, the description is incomplete. It doesn't explain what the tool returns (e.g., structured data, documentation text), how it behaves (e.g., error handling), or how it differs from siblings. For a tool with zero structured context, this leaves the agent under-informed.

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 input schema has 100% description coverage (though empty). The description doesn't need to compensate for any parameter gaps, so a baseline score of 4 is appropriate as it adequately handles the lack of parameters without adding unnecessary detail.

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

Purpose3/5

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

The description 'Get REST API reference information' clearly states the action (get) and resource (REST API reference information), but it's vague about what specific information is retrieved. It doesn't distinguish this tool from its siblings like 'get_sdk_reference' or 'search_docs' beyond the general resource type.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'get_sdk_reference' or 'search_docs'. There's no mention of context, prerequisites, or exclusions, leaving the agent to infer usage based on tool names alone.

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

get_code_exampleB

Get a code example for a specific use case

ParametersJSON Schema
NameRequiredDescriptionDefault
languageYesProgramming language
topicYesTopic for the code example

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe how it behaves: no information about response format, error handling, rate limits, authentication requirements, or whether it's read-only (though implied by 'Get'). This leaves significant gaps for a tool with no annotation coverage.

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 a single, efficient sentence that communicates the core purpose without any wasted words. It's appropriately sized for a simple lookup tool and front-loads the essential information.

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

Completeness3/5

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

For a simple 2-parameter lookup tool with good schema coverage but no annotations or output schema, the description is minimally adequate. It states what the tool does but lacks important behavioral context that would help an agent understand how to properly use it. The absence of output information is a notable gap.

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%, with both parameters well-documented in the schema (language and topic with clear enums and descriptions). The description adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

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

Purpose4/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 with a specific verb ('Get') and resource ('code example'), and specifies the scope ('for a specific use case'). It doesn't explicitly differentiate from sibling tools like get_api_reference or get_sdk_reference, but the focus on code examples rather than API/SDK references provides some implicit distinction.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like search_docs or the other reference tools. It mentions 'specific use case' but doesn't clarify what constitutes such a case or when other tools might be more appropriate.

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

get_sdk_referenceB

Get SDK API reference for a specific language

ParametersJSON Schema
NameRequiredDescriptionDefault
languageYesProgramming language

TDQS

B3.1/5.0
Behavior2/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 of behavioral disclosure. It states what the tool does but doesn't describe how it behaves—e.g., whether it returns structured data or raw text, if there are rate limits, authentication requirements, or error conditions. This leaves significant gaps for an AI agent.

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 a single, efficient sentence that front-loads the core purpose without unnecessary words. It's appropriately sized for a simple tool with one parameter, earning its place by clearly stating the action and target.

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

Completeness3/5

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

Given the tool's low complexity (one parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose but lacks details on behavior, usage context, or output format, which are needed for full completeness despite the simple schema.

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 input schema has 100% description coverage, with the single parameter 'language' fully documented via an enum and description. The description adds no additional parameter semantics beyond implying language specificity, so it meets the baseline of 3 where the schema does the heavy lifting.

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

Purpose4/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 with a specific verb ('Get') and resource ('SDK API reference'), and specifies the target ('for a specific language'). However, it doesn't differentiate from sibling tools like 'get_api_reference' or 'get_code_example', which likely serve related but distinct purposes.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_api_reference' or 'search_docs', nor does it specify prerequisites, exclusions, or appropriate contexts for usage.

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

search_docsC

Search Statly documentation for a topic

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query (e.g., "express integration", "capture error")

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It mentions searching documentation but doesn't describe what the search returns (e.g., links, summaries, full text), how results are ranked, whether there are rate limits, or any authentication requirements. This leaves significant gaps in understanding the tool's behavior.

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 extremely concise at just one sentence with no wasted words. It's front-loaded with the core purpose ('Search Statly documentation for a topic'), making it efficient and easy to parse, though this brevity contributes to gaps in other dimensions.

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

Completeness2/5

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

Given the tool's complexity (a search function with no output schema and no annotations), the description is incomplete. It doesn't explain what the search returns, how to interpret results, or any behavioral aspects like pagination or error handling. This leaves the agent with insufficient context to use the tool effectively beyond knowing it performs searches.

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 input schema has 100% description coverage, with the single parameter 'query' well-documented in the schema itself. The description adds no additional parameter semantics beyond what's already in the schema, so it meets the baseline of 3 where the schema does the heavy lifting without compensation needed.

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

Purpose4/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 with a specific verb ('Search') and resource ('Statly documentation'), making it immediately understandable. However, it doesn't differentiate this search functionality from sibling tools like get_api_reference or get_sdk_reference, which might also retrieve documentation content through different mechanisms.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when this search tool is appropriate compared to the sibling tools (get_api_reference, get_code_example, get_sdk_reference), nor does it specify any prerequisites, exclusions, or contextual constraints for its use.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedget_api_reference
    • First observedget_code_example
    • First observedget_sdk_reference
    • First observedsearch_docs

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_api_reference for REST API details, get_code_example for code snippets, get_sdk_reference for language-specific SDKs, and search_docs for general documentation search. There is no overlap or ambiguity between these functions, making tool selection straightforward for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' or 'search_' prefixes and snake_case formatting. This uniformity (get_api_reference, get_code_example, get_sdk_reference, search_docs) makes the set predictable and easy to navigate, with no deviations in style.

Tool Count4/5

With 4 tools, the count is appropriate for a documentation-focused server, covering key areas like API references, code examples, SDKs, and search. It is slightly lean but reasonable, as each tool serves a distinct and essential function without feeling bloated or incomplete.

Completeness4/5

The tool set covers the core documentation domain well, including references, examples, and search. A minor gap exists in lacking update or management tools (e.g., for documentation content), but this is acceptable for a read-only documentation server, and agents can still perform typical lookup tasks effectively.

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

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/KodyDennon/statly-docs-mcp'

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