home / mcp / statly docs mcp server
Provides search, SDK references, code examples, and REST API docs for Statly within an MCP framework.
Configuration
View docs{
"mcpServers": {
"kodydennon-statly-docs-mcp": {
"command": "npx",
"args": [
"statly-docs-mcp"
],
"env": {
"STATLY_DOCS_API_KEY": "YOUR_API_KEY"
}
}
}
}You can run the Statly Docs MCP Server to empower AI agents with fast access to Statly SDK and API documentation. It exposes a lightweight, self-contained channel that lets clients search topics, fetch SDK references, code examples, and REST API details, all from Statly documentation sources.
To work with an MCP client, you connect your client to the Statly Docs MCP Server using either a local process (stdio) or a remote HTTP endpoint. Once connected, you can perform searches for topics, request SDK references for specific languages, fetch code examples for common use cases, and retrieve REST API reference information. The server exposes dedicated tools to retrieve and organize the documentation content so your assistant can present precise, actionable results.
Prerequisites: you need Node.js and a package manager installed on your system.
Install the MCP package for Statly docs.
npm install statly-docs-mcpConfigure the MCP server to run as an stdio service using the CLI-provided command. The recommended runtime is to invoke the MCP package via npx so you do not need a global install.
{
"mcpServers": {
"statly_docs": {
"command": "npx",
"args": ["statly-docs-mcp"]
}
}
}If you are developing the MCP server locally, install dependencies, build, and start the server as shown.
pnpm install
pnpm build
pnpm startSearch Statly documentation for a topic and return relevant results.
Retrieve the SDK API reference for a specific language (javascript, python, go).
Provide a code example for a given language and use-case (installation, init, capture_error, user_context, breadcrumbs).
Fetch REST API reference information for Statly services.