by docfork
Docfork MCP - Up-to-date Docs for AI Agents.
# Add to your Claude Code skills
git clone https://github.com/docfork/docfork-mcp
Standard AI models (Claude 4.5, GPT-5.1) have a knowledge cutoff. They don't know about the framework changes released last week.
The Problem:
The Solution:
Go to .
No comments yet. Be the first to share your thoughts!
Cursor Settings > Tools & MCP > New MCP Server:Remote (Recommended):
{
"mcpServers": {
"docfork": {
"url": "https://mcp.docfork.com/mcp",
"headers": {
"DOCFORK_API_KEY": "YOUR_API_KEY"
}
}
}
}
Local:
{
"mcpServers": {
"docfork": {
"command": "npx",
"args": ["-y", "docfork", "--api-key", "YOUR_API_KEY"]
}
}
}
Remote:
claude mcp add --transport http docfork https://mcp.docfork.com/mcp --header "DOCFORK_API_KEY: YOUR_API_KEY"
Local:
claude mcp add docfork -- npx -y docfork --api-key YOUR_API_KEY
Remote:
{
"mcp": {
"docfork": {
"type": "remote",
"url": "https://mcp.docfork.com/mcp",
"headers": {
"DOCFORK_API_KEY": "YOUR_API_KEY"
},
"enabled": true
}
}
}
Local:
{
"mcp": {
"docfork": {
"type": "local",
"command": ["npx", "-y", "docfork", "--api-key", "YOUR_API_KEY"],
"enabled": true
}
}
}
Just tell your AI to use docfork:
Create a basic Next.js app with the App Router. use docfork
Unlike other tools that search the "entire internet" and return bloated results, Docfork lets you create Cabinets.
Cabinets are curated, private indexes specific to your project stack.
DOCFORK_CABINET header to your MCP config.{
"mcpServers": {
"docfork": {
"url": "https://mcp.docfork.com/mcp",
"headers": {
"DOCFORK_API_KEY": "YOUR_API_KEY",
"DOCFORK_CABINET": "general"
}
}
}
}
Now your AI knows you mean Better Auth, not Firebase or Auth0, because it's locked to your Cabinet.
Add a Rule to make your AI automatically fetch documentation whenever you mention a library:
Manual Setup (Copy & Paste) If you prefer manual configuration, add a rule to your MCP client to auto-invoke Docfork for code-related questions:
You have access to the docfork MCP server. To ensure the code you write is accurate and up-to-date, you must follow these requirements:
1. Auto-Invoke: Always use `docfork_search_docs` when asked for library implementation, API setup, or debugging.
2. Context Strategy:
- Search: Call `docfork_search_docs`. Review the `content` snippets in the results.
- Read: Only call `docfork_read_url` if the search snippets are incomplete or you need the full file context for a complex implementation.
- Identity: Use the `docforkIdentifier` in follow-up searches to narrow results to a specific library.
If you are unsure of a library's latest syntax, search with docfork first.
Docfork provides two high-performancetools optimized for AI agents:
| Tool | Purpose | Key Parameters |
| :-------------------- | :------------------------------------------------------------------------- | :-------------------------------------- |
| docfork_search_docs | The Entry Point. Searches 10k+ libraries or your private Cabinets. | query, docforkIdentifier (optional) |
| docfork_read_url | The Deep Dive. Fetches full Markdown content from a search result URL. | url (required) |
[!TIP] Identity First: Always use the
docforkIdentifierin your searches (e.g.,vercel/next.js) for 10x more accurate results within a specific library.
Find specific guides and technical resources at docs.docfork.com:
Keep up with the changelog and community discussions:
Docfork is an open, community-driven catalogue. While we review submissions, we cannot guarantee accuracy for every project listed. If you spot an issue, raise a GitHub issue or contact support.
MIT