Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Docfork Mcp

    Up-to-date documentation to 9,000+ libraries for devs and AI agents. Built for the Model Context Protocol to enhance AI capabilities. TypeScript-based implement

    167 stars
    TypeScript
    Updated Oct 17, 2025
    documentation
    mcp
    mcp-server
    modelcontextprotocol
    vibe-coding

    Table of Contents

    • ⚡ Built for Precision
    • 🚀 Quick Start
    • 1. Get your Free API Key
    • 2. Install MCP
    • Cursor Remote Server Connection
    • Cursor Local Server Connection
    • Claude Code Local Server Connection
    • Claude Code Remote Server Connection
    • OpenCode Remote Server Connection
    • OpenCode Local Server Connection
    • Cline Remote Server Connection
    • Cline Local Server Connection
    • 3. Just say use docfork
    • 4. Make it automatic
    • 🔨 Tools
    • 📖 Docs
    • 💬 Community
    • Star History
    • Disclaimer
    • License

    Table of Contents

    • ⚡ Built for Precision
    • 🚀 Quick Start
    • 1. Get your Free API Key
    • 2. Install MCP
    • Cursor Remote Server Connection
    • Cursor Local Server Connection
    • Claude Code Local Server Connection
    • Claude Code Remote Server Connection
    • OpenCode Remote Server Connection
    • OpenCode Local Server Connection
    • Cline Remote Server Connection
    • Cline Local Server Connection
    • 3. Just say use docfork
    • 4. Make it automatic
    • 🔨 Tools
    • 📖 Docs
    • 💬 Community
    • Star History
    • Disclaimer
    • License

    Documentation

    Docfork cover

    Docfork MCP - Up-to-date Docs for AI Agents

        

          

    Lock your agent's context to your stack.

    Define a Docfork Cabinet — Next.js 16 + Drizzle ORM + Better Auth — and every query returns only docs from your stack. No more bloated results. No more hallucinations.

    ⚡ Built for Precision

    Documentation context as precise as your dependency lockfile:

    • Cabinets — Lock your agent to a verified stack. Only your libraries. Fully isolated.
    • 10,000+ libraries — Pre-chunked docs and code examples. ~200ms edge retrieval.
    • Team-ready — Share Cabinets and API keys across your org. Same context, every engineer.

    Set a Cabinet: Next.js 16 + Drizzle ORM + Better Auth.

    Your agent only sees docs for your stack. No stray Express docs. No Prisma confusion.

    🚀 Quick Start

    1. Get your Free API Key

    Sign up at **docfork.com** — free: 1,000 requests/month, 5 team seats.

    2. Install MCP

    Install in Cursor

    Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server

    Paste this into ~/.cursor/mcp.json. For project-scoped config, create .cursor/mcp.json in your project folder. See Cursor MCP docs for more info.

    Since Cursor 1.0, click the buttons below to install instantly.

    Cursor Remote Server Connection

    Install MCP Server

    json
    {
      "mcpServers": {
        "docfork": {
          "url": "https://mcp.docfork.com/mcp",
          "headers": {
            "DOCFORK_API_KEY": "YOUR_API_KEY"
          }
        }
      }
    }

    Cursor Local Server Connection

    Install MCP Server

    json
    {
      "mcpServers": {
        "docfork": {
          "command": "npx",
          "args": ["-y", "docfork", "--api-key", "YOUR_API_KEY"]
        }
      }
    }

    Install in Claude Code

    Run this command. See Claude Code MCP docs for more info.

    Claude Code Local Server Connection

    sh
    claude mcp add docfork -- npx -y docfork --api-key YOUR_API_KEY

    Claude Code Remote Server Connection

    sh
    claude mcp add --header "DOCFORK_API_KEY: YOUR_API_KEY" --transport http docfork https://mcp.docfork.com/mcp

    Install in OpenCode

    Add this to your OpenCode configuration file. See OpenCode MCP docs for more info.

    OpenCode Remote Server Connection

    jsonc
    {
      "$schema": "https://opencode.ai/config.json",
      "mcp": {
        "docfork": {
          "type": "remote",
          "url": "https://mcp.docfork.com/mcp",
          "headers": {
            "DOCFORK_API_KEY": "YOUR_API_KEY",
          },
          "enabled": true,
        },
      },
    }

    OpenCode Local Server Connection

    jsonc
    {
      "$schema": "https://opencode.ai/config.json",
      "mcp": {
        "docfork": {
          "type": "local",
          "command": ["npx", "-y", "docfork", "--api-key", "YOUR_API_KEY"],
          "enabled": true,
        },
      },
    }

    Install in Cline

    Add this to your Cline cline_mcp_settings.json file. To access it: Click the MCP Servers icon in the top navigation bar → Select the "Configure" tab → Click "Configure MCP Servers" at the bottom. See Cline MCP docs for more info.

    Cline Remote Server Connection

    json
    {
      "mcpServers": {
        "docfork": {
          "url": "https://mcp.docfork.com/mcp",
          "type": "streamableHttp",
          "headers": {
            "DOCFORK_API_KEY": "YOUR_API_KEY"
          },
          "alwaysAllow": ["search_docs", "fetch_doc"],
          "disabled": false
        }
      }
    }

    Cline Local Server Connection

    json
    {
      "mcpServers": {
        "docfork": {
          "command": "npx",
          "args": ["-y", "docfork", "--api-key", "YOUR_API_KEY"],
          "alwaysAllow": ["search_docs", "fetch_doc"],
          "disabled": false
        }
      }
    }

    **Windsurf, Roo Code, and 40+ more →**

    OAuth Authentication

    Docfork supports MCP OAuth specs. Change your endpoint to use OAuth:

    diff
    - "url": "https://mcp.docfork.com/mcp"
    + "url": "https://mcp.docfork.com/mcp/oauth"

    _Note: OAuth is for remote HTTP connections only. View OAuth Guide →_

    3. Just say use docfork

    Add use docfork to any prompt:

    txt
    Implement a secure authentication flow using Better Auth and Supabase. use docfork

    4. Make it automatic

    Add a rule so Docfork stays active — skip the prompt suffix.

    [!NOTE]

    [Add Rule to Cursor (One-Click)]()

    Copy rule:

    markdown title=".cursor/rules/docfork-policy.md"
    When writing or debugging code that involves third-party libraries, frameworks, or APIs, use Docfork MCP `search_docs` and `fetch_doc` tools rather than relying on training data.
    
    **Two defaults to follow every time:**
    - Start `library` with a short name or keyword (e.g., `nextjs`, `zod`). Use the `owner/repo` from the result URL for follow-up calls, never guess it upfront.
    - After finding a relevant result, call `fetch_doc` to get the full content. Search results are summaries only.
    
    Skip Docfork when:
    - Language built-ins, general algorithms, syntax stable across versions
    - Code or docs the user has already provided in context
    
    When uncertain, default to using Docfork.

    Now your AI fetches the latest docs automatically:

    txt
    Add a Prisma schema for a multi-tenant SaaS and generate the client.

    🔨 Tools

    ToolPurpose
    search_docsContext-Aware Search. Respects your DOCFORK_CABINET header to strictly limit results to your approved tech stack.
    fetch_docFetch Doc. Fetches full Markdown content from a URL when chunks aren't enough.

    📖 Docs

    • **Search Public Libraries** – Find libraries to add to your Cabinet.
    • **Installation Guides** – Setup guides for every IDE.
    • **Cabinets** – Lock your agent to specific libraries.
    • **Library Identifiers** – Target exact repos with owner/repo.
    • **Troubleshooting** – Fix connection or auth issues.

    💬 Community

    • **Changelog** – We ship constantly. Every release, documented.
    • **X (Twitter)** – Product updates and what's next.
    • Found an issue? Raise a GitHub issue or contact support.

    Star History

    Star History Chart

    Disclaimer

    Docfork is an open, community-driven catalogue. We review submissions but can't guarantee accuracy for every project. Spot an issue? Raise a GitHub issue or contact support.

    License

    MIT

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • WE

      Web Eval Agent

      Python·
      1.2k
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • AW

      Aws Mcp Server

      Python·
      165

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • WE

      Web Eval Agent

      Python·
      1.2k
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • AW

      Aws Mcp Server

      Python·
      165

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k