Doccler MCP Server
Enables AI assistants to interact with the Doccler documentation platform, allowing users to query, create, search, generate, publish, and organize documents directly from their IDE.
README
Doccler MCP Server
š Connect your IDE to Doccler - Use AI-powered documentation directly from your development environment.
What is MCP?
The Model Context Protocol (MCP) is an open standard that allows AI assistants (like Claude, Cursor, VS Code with AI extensions) to connect to external tools and data sources. Doccler's MCP server enables you to:
- Query your documentation as a single source of truth
- Create documentation directly from your IDE
- Search documentation with semantic search
- Generate documentation from code using AI
- Publish/unpublish documents
- Organize documents into spaces
Quick Start
1. Get Your Doccler API Key
- Log in to Doccler
- Go to Settings ā API Keys
- Click Create New API Key
- Copy the key (it's only shown once!)
2. Configure Your IDE
Choose your IDE and add the configuration:
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"doccler": {
"command": "npx",
"args": ["-y", "@doccler/mcp-server@latest"],
"env": {
"DOCCLER_API_KEY": "doccler_xxxxxxxx_yyyyyyyyyyyyyyyyyyyy"
}
}
}
}
Claude Desktop
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"doccler": {
"command": "npx",
"args": ["-y", "@doccler/mcp-server@latest"],
"env": {
"DOCCLER_API_KEY": "doccler_xxxxxxxx_yyyyyyyyyyyyyyyyyyyy"
}
}
}
}
VS Code / Antigravity
Add to your MCP settings:
{
"mcp": {
"servers": {
"doccler": {
"command": "npx",
"args": ["-y", "@doccler/mcp-server@latest"],
"env": {
"DOCCLER_API_KEY": "doccler_xxxxxxxx_yyyyyyyyyyyyyyyyyyyy"
}
}
}
}
}
3. Restart Your IDE
After adding the configuration, restart your IDE. The Doccler MCP server will be downloaded and started automatically.
Alternative: Global Installation
If you prefer to install globally instead of using npx:
npm install -g @doccler/mcp-server
Then configure your IDE with:
{
"mcpServers": {
"doccler": {
"command": "doccler-mcp",
"env": {
"DOCCLER_API_KEY": "doccler_xxxxxxxx_yyyyyyyyyyyyyyyyyyyy"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
hello_doccler |
Verify your connection to Doccler |
search_docs |
Search your documentation (keyword + semantic) |
create_doc |
Create new documentation with optional space |
generate_doc |
Generate documentation from code using AI |
publish_doc |
Publish or unpublish a document |
get_doc |
Get the content of a specific document |
list_spaces |
List all available spaces |
Usage Examples
Search Documentation
"Search my documentation for authentication"
"Find docs about API endpoints"
Create Documentation
"Create documentation titled 'Getting Started' about how to install the app"
"Create a doc in the API space explaining the user endpoint"
Generate from Code
"Generate documentation for this code: [paste your code]"
"Document this function with examples"
Publish/Unpublish
"Publish the document with slug 'getting-started'"
"Unpublish my-api-guide"
Environment Variables
| Variable | Description | Default |
|---|---|---|
DOCCLER_API_KEY |
Your Doccler API key | (required) |
DOCCLER_API_URL |
API URL (for self-hosted) | https://doccler.app/api |
Note:
DOCCLER_API_URLis only needed for self-hosted instances or development. Production users can omit it.
Troubleshooting
"API Key not configured"
Make sure DOCCLER_API_KEY is set in your IDE's MCP configuration.
"Unauthorized" errors
- Check that your API key is valid
- Go to Settings ā API Keys in Doccler to verify
- Create a new key if needed
Server not starting
- Ensure Node.js 18+ is installed
- Try running manually:
npx @doccler/mcp-server - Check your IDE's MCP logs
Support
- Documentation: doccler.app/en/docs
- Email: help@doccler.app
License
MIT Ā© Doccler
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.