@docingest/mcp-server
v1.0.1
Published
MCP Server for DocIngest - Up-to-date documentation for LLMs and AI code editors
Maintainers
Readme
DocIngest MCP Server
Up-to-date documentation for LLMs and AI code editors.
Installation
Option 1: npx (Recommended)
# Claude Code
claude mcp add docingest -- npx -y @docingest/mcp-server
# Or run directly
npx @docingest/mcp-serverOption 2: Global Install
npm install -g @docingest/mcp-server
docingest-mcpConfigure Your AI Tool
Claude Code
claude mcp add docingest -- npx -y @docingest/mcp-serverCursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"docingest": {
"command": "npx",
"args": ["-y", "@docingest/mcp-server"]
}
}
}Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"docingest": {
"command": "npx",
"args": ["-y", "@docingest/mcp-server"]
}
}
}Codex
Add to your Codex MCP configuration:
{
"mcpServers": {
"docingest": {
"command": "npx",
"args": ["-y", "@docingest/mcp-server"]
}
}
}Usage
Once installed, you can use DocIngest in your prompts:
use docingest to find React hooks documentationOr explicitly call the tools:
First, resolve the library ID for "nextjs", then get the routing documentationAvailable Tools
find-docs
Find documentation sources by library name.
| Parameter | Required | Description |
|-----------|----------|-------------|
| libraryName | Yes | Name of the library (e.g., "react", "nextjs") |
read-docs
Fetch full documentation content for a library.
| Parameter | Required | Description |
|-----------|----------|-------------|
| domain | Yes | Domain from find-docs (e.g., "react.dev") |
| topic | No | Filter to specific topic (e.g., "hooks") |
| maxTokens | No | Maximum tokens to return (default: 5000) |
query-docs
Full-text search across all indexed documentation.
| Parameter | Required | Description |
|-----------|----------|-------------|
| query | Yes | Search query |
| limit | No | Maximum results (default: 5) |
Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| DOCINGEST_API_URL | https://docingest.com/api | DocIngest API endpoint |
License
MIT
