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
<img alt="Install in VS Code (http)" src="https://img.shields.io/badge/Install%20in%20VS%20Code-0098FF?style=for-the-badge&logo=visualstudiocode&logoColor=white">
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 app.docfork.com.
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": {
...