home / mcp / statly docs mcp server

Statly Docs MCP Server

Provides search, SDK references, code examples, and REST API docs for Statly within an MCP framework.

Installation
Add the following to your MCP client configuration file.

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.

How to use

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.

How to install

Prerequisites: you need Node.js and a package manager installed on your system.

Install the MCP package for Statly docs.

npm install statly-docs-mcp

Additional notes

Configure 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"]
    }
  }
}

Development and start flow

If you are developing the MCP server locally, install dependencies, build, and start the server as shown.

pnpm install
pnpm build
pnpm start

Available tools

search_docs

Search Statly documentation for a topic and return relevant results.

get_sdk_reference

Retrieve the SDK API reference for a specific language (javascript, python, go).

get_code_example

Provide a code example for a given language and use-case (installation, init, capture_error, user_context, breadcrumbs).

get_api_reference

Fetch REST API reference information for Statly services.