# Statly Docs MCP Server
Model Context Protocol server for Statly documentation. Enables AI agents to search and retrieve Statly SDK and API documentation.
## Installation
```bash
npm install statly-docs-mcp
```
## Usage with Claude Desktop
Add to your Claude Desktop configuration (`~/Library/Application Support/Claude/claude_desktop_config.json`):
```json
{
"mcpServers": {
"statly-docs": {
"command": "npx",
"args": ["statly-docs-mcp"]
}
}
}
```
## Usage with Claude Code
```bash
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
```bash
pnpm install
pnpm build
pnpm start
```