Doccler MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Doccler MCP Serversearch my documentation for authentication"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: Unified Docs Hub
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-serverThen configure your IDE with:
{
"mcpServers": {
"doccler": {
"command": "doccler-mcp",
"env": {
"DOCCLER_API_KEY": "doccler_xxxxxxxx_yyyyyyyyyyyyyyyyyyyy"
}
}
}
}Available Tools
Tool | Description |
| Verify your connection to Doccler |
| Search your documentation (keyword + semantic) |
| Create new documentation with optional space |
| Generate documentation from code using AI |
| Publish or unpublish a document |
| Get the content of a specific document |
| 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 |
| Your Doccler API key | (required) |
| API URL (for self-hosted) |
|
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-serverCheck your IDE's MCP logs
Support
Documentation: doccler.app/en/docs
Email: help@doccler.app
License
MIT © Doccler
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to enhance their responses with relevant documentation through a semantic vector search, offering tools for managing and processing documentation efficiently.2162MIT
- AlicenseNot gradedqualityDmaintenanceProvides AI assistants with searchable access to documentation from 170+ curated repositories and 1000+ popular GitHub projects across 20+ categories including trading, AI/ML, DevOps, and web development.3MIT
- AlicenseAqualityAmaintenanceProvides AI assistants with intelligent access to project documentation and API references through smart search, contextual rules, and Docset integration. Enables AI to understand project-specific conventions, patterns, and official framework documentation without token limits.11886MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, create, modify, and organize documentation pages and spaces in Docmost.1526MIT
Related MCP Connectors
@latest documentation and code examples to 9000+ libraries for LLMs and AI code editors in a singl…
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/doccler-app/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server