Docy (Documentation Access)

oborchers

by oborchers

Docy (Documentation Access) delivers real-time search and navigation of technical documentation without leaving your con

Provides direct access to technical documentation from configured sources, enabling real-time search, retrieval, and navigation through documentation content without leaving the conversation context.

github stars

18

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

Hot-reload support for adding sources without restartSelf-hosted for security controlIntelligent caching reduces latency

best for

  • / Developers needing current API documentation during coding
  • / AI-assisted programming with accurate reference material
  • / Technical support requiring up-to-date documentation access

capabilities

  • / Search technical documentation in real-time
  • / Retrieve specific content from documentation sites
  • / Navigate through documentation hierarchies
  • / Cache documentation for faster access
  • / Add new documentation sources dynamically

what it does

Provides real-time access to technical documentation from configured sources, allowing AI assistants to search and retrieve current docs without leaving the conversation.

about

Docy (Documentation Access) is a community-built MCP server published by oborchers that provides AI assistants with tools and capabilities via the Model Context Protocol. Docy (Documentation Access) delivers real-time search and navigation of technical documentation without leaving your con

how to install

You can install Docy (Documentation Access) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Docy (Documentation Access) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

Docy Logo

Docy: Documentation at Your AI's Fingertips

Supercharge your AI assistant with instant access to technical documentation.

Docy gives your AI direct access to the technical documentation it needs, right when it needs it. No more outdated information, broken links, or rate limits - just accurate, real-time documentation access for more precise coding assistance.

Why Choose Docy?

  • Instant Documentation Access: Direct access to docs from React, Python, crawl4ai, and any other tech stack you use
  • Hot-Reload Support: Add new documentation sources on-the-fly without restarting - just edit the .docy.urls file!
  • Intelligent Caching: Reduces latency and external requests while maintaining fresh content
  • Self-Hosted Control: Keep your documentation access within your security perimeter
  • Seamless MCP Integration: Works effortlessly with Claude, VS Code, and other MCP-enabled AI tools

Note: Claude may default to using its built-in WebFetchTool instead of Docy. To explicitly request Docy's functionality, use a callout like: "Please use Docy to find..."

Docy MCP Server

A Model Context Protocol server that provides documentation access capabilities. This server enables LLMs to search and retrieve content from documentation websites by scraping them with crawl4ai. Built with FastMCP v2.

Using Docy

Here are examples of how Docy can help with common documentation tasks:

# Verify implementation against documentation
Are we implementing Crawl4Ai scrape results correctly? Let's check the documentation.

# Explore API usage patterns
What do the docs say about using mcp.tool? Show me examples from the documentation.

# Compare implementation options
How should we structure our data according to the React documentation? What are the best practices?

With Docy, Claude Code can directly access and analyze documentation from configured sources, making it more effective at providing accurate, documentation-based guidance.

To ensure Claude Code prioritizes Docy for documentation-related tasks, add the following guidelines to your project's CLAUDE.md file:

## Documentation Guidelines
- When checking documentation, prefer using Docy over WebFetchTool
- Use list_documentation_sources_tool to discover available documentation sources
- Use fetch_documentation_page to retrieve full documentation pages
- Use fetch_document_links to discover related documentation

Adding these instructions to your CLAUDE.md file helps Claude Code consistently use Docy instead of its built-in web fetch capabilities when working with documentation.

Available Tools

  • list_documentation_sources_tool - List all available documentation sources

    • No parameters required
  • fetch_documentation_page - Fetch the content of a documentation page by URL as markdown

    • url (string, required): The URL to fetch content from
  • fetch_document_links - Fetch all links from a documentation page

    • url (string, required): The URL to fetch links from

Prompts

  • documentation_sources

    • List all available documentation sources with their URLs and types
    • No arguments required
  • documentation_page

    • Fetch the full content of a documentation page at a specific URL as markdown
    • Arguments:
      • url (string, required): URL of the specific documentation page to get
  • documentation_links

    • Fetch all links from a documentation page to discover related content
    • Arguments:
      • url (string, required): URL of the documentation page to get links from

Installation

Using uv (recommended)

When using uv no specific installation is needed. We will use uvx to directly run mcp-server-docy.

Using PIP

Alternatively you can install mcp-server-docy via pip:

pip install mcp-server-docy

After installation, you can run it as a script using:

DOCY_DOCUMENTATION_URLS="https://docs.crawl4ai.com/,https://react.dev/" python -m mcp_server_docy

Using Docker

You can also use the Docker image:

docker pull oborchers/mcp-server-docy:latest
docker run -i --rm -e DOCY_DOCUMENTATION_URLS="https://docs.crawl4ai.com/,https://react.dev/" oborchers/mcp-server-docy

Global Server Setup

For teams or multi-project development, check out the server/README.md for instructions on running a persistent SSE server that can be shared across multiple projects. This setup allows you to maintain a single Docy instance with shared documentation URLs and cache.

Configuration

Configure for Claude.app

Add to your Claude settings:

<details> <summary>Using uvx</summary>
"mcpServers": {
  "docy": {
    "command": "uvx",
    "args": ["mcp-server-docy"],
    "env": {
      "DOCY_DOCUMENTATION_URLS": "https://docs.crawl4ai.com/,https://react.dev/"
    }
  }
}
</details> <details> <summary>Using docker</summary>
"mcpServers": {
  "docy": {
    "command": "docker",
    "args": ["run", "-i", "--rm", "oborchers/mcp-server-docy:latest"],
    "env": {
      "DOCY_DOCUMENTATION_URLS": "https://docs.crawl4ai.com/,https://react.dev/"
    }
  }
}
</details> <details> <summary>Using pip installation</summary>
"mcpServers": {
  "docy": {
    "command": "python",
    "args": ["-m", "mcp_server_docy"],
    "env": {
      "DOCY_DOCUMENTATION_URLS": "https://docs.crawl4ai.com/,https://react.dev/"
    }
  }
}
</details>

Configure for VS Code

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is needed when using the mcp.json file.

<details> <summary>Using uvx</summary>
{
  "mcp": {
    "servers": {
      "docy": {
        "command": "uvx",
        "args": ["mcp-server-docy"],
        "env": {
          "DOCY_DOCUMENTATION_URLS": "https://docs.crawl4ai.com/,https://react.dev/"
        }
      }
    }
  }
}
</details> <details> <summary>Using Docker</summary>
{
  "mcp": {
    "servers": {
      "docy": {
        "command": "docker",
        "args": ["run", "-i", "--rm", "oborchers/mcp-server-docy:latest"],
        "env": {
          "DOCY_DOCUMENTATION_URLS": "https://docs.crawl4ai.com/,https://react.dev/"
        }
      }
    }
  }
}
</details>

Configuration Options

The application can be configured using environment variables:

  • DOCY_DOCUMENTATION_URLS (string): Comma-separated list of URLs to documentation sites to include (e.g., "https://docs.crawl4ai.com/,https://react.dev/")
  • DOCY_DOCUMENTATION_URLS_FILE (string): Path to a file containing documentation URLs, one per line (default: ".docy.urls")
  • DOCY_CACHE_TTL (integer): Cache time-to-live in seconds (default: 432000)
  • DOCY_CACHE_DIRECTORY (string): Path to the cache directory (default: ".docy.cache")
  • DOCY_USER_AGENT (string): Custom User-Agent string for HTTP requests
  • DOCY_DEBUG (boolean): Enable debug logging ("true", "1", "yes", or "y")
  • DOCY_SKIP_CRAWL4AI_SETUP (boolean): Skip running the crawl4ai-setup command at startup ("true", "1", "yes", or "y")
  • DOCY_TRANSPORT (string): Transport protocol to use (options: "sse" or "stdio", default: "stdio")
  • DOCY_HOST (string): Host address to bind the server to (default: "127.0.0.1")
  • DOCY_PORT (integer): Port to run the server on (default: 8000)

Environment variables can be set directly or via a .env file.

URL Configuration File

As an alternative to setting the DOCY_DOCUMENTATION_URLS environment variable, you can create a .docy.urls file in your project directory with one URL per line:

https://docs.crawl4ai.com/
https://react.dev/
# Lines starting with # are treated as comments
https://docs.python.org/3/

This approach is especially useful for:

  • Projects where you want to share documentation sources with your team
  • Repositories where storing URLs in version control is beneficial
  • Situations where you want to avoid long environment variable values

The server will first check for URLs in the DOCY_DOCUMENTATION_URLS environment variable, and if none are found, it will look for the .docy.urls file.

Hot Reload for URL File

When using the .docy.urls file for documentation sources, the server implements a hot-reload mechanism that reads the file on each request rather than caching the URLs. This means you can:

  1. Add, remove, or modify documentation URLs in the .docy.urls file while the server is running
  2. See those changes reflected immediately in subsequent calls to list_documentation_sources_tool or other documentation tools
  3. Avoid restarting the server when modifying your documentation sources

This is particularly useful during development or when you need to quickly add new documentation sources to a running server.

Documentation URL Best Practices

The URLs you configure should ideally point to documentation index or introduction pages that contain:

  • Tables of contents
  • Navigation structures
  • Collections of internal and external links

This allows the LLM to:

  1. Start at a high-level documentation page
  2. Discover relevant subpages via links
  3. Navigate to specific documentation as needed

Using documentation sites with well-structured subpages is highly recommended as it:

  • Minimizes context usage by allowing the LLM to focus on relevant sections
  • Improves navigation efficiency through documentation
  • Provides a natural way to explore and find information
  • Reduces the need to load entire documentation sets at once

For example, instead of loading an entire documentation site, the LLM can start at the index page, identify the relevant section, and then navigate to specific sub


FAQ

What is the Docy (Documentation Access) MCP server?
Docy (Documentation Access) is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Docy (Documentation Access)?
This profile displays 52 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.6 out of 5—verify behavior in your own environment before production use.

Use Cases

Extended AI Capabilities

Add new capabilities to Claude beyond text generation

Example

Access external data sources, execute code, interact with tools and services

Transform Claude from chatbot to action-taking agent

Context Enhancement

Provide Claude with access to relevant context and data

Example

Load project documentation, access knowledge bases, query databases

Get more accurate, context-aware responses

Workflow Automation

Automate multi-step workflows combining AI and external tools

Example

Research → Summarize → Create document → Send notification

Complete complex tasks end-to-end without manual steps

Implementation Guide

Prerequisites

  • Claude Desktop 0.7.0+ or Cursor IDE with MCP support
  • Basic understanding of MCP architecture and capabilities
  • Access credentials for integrated services (if required)
  • Willingness to experiment and iterate on configuration

Time Estimate

15-60 minutes depending on server complexity

Installation Steps

  1. 1.Install MCP server: npm install -g [package-name] or via GitHub
  2. 2.Add server configuration to ~/.claude/mcp.json
  3. 3.Provide required credentials and configuration
  4. 4.Restart Claude Desktop to load new server
  5. 5.Test basic functionality with simple prompts
  6. 6.Explore capabilities and experiment with use cases
  7. 7.Document successful patterns for reuse

Troubleshooting

  • MCP server not loading: Check config syntax, verify installation
  • Connection errors: Check network, firewall, credentials
  • Feature not working: Read server docs, check required parameters
  • Performance issues: Monitor resource usage, check for network latency
  • Conflicts with other servers: Check port assignments, namespace collisions

Best Practices

✓ Do

  • +Read server documentation thoroughly before setup
  • +Start with simple use cases to validate functionality
  • +Test in non-production environment first
  • +Monitor resource usage and performance
  • +Keep servers updated for bug fixes and new features
  • +Document configuration for team members
  • +Use environment variables for sensitive configuration

✗ Don't

  • Don't grant overly permissive access to MCP servers
  • Don't skip reading security considerations in docs
  • Don't expose sensitive data without proper controls
  • Don't run untrusted MCP servers without code review
  • Don't ignore error messages—investigate root cause

💡 Pro Tips

  • Combine multiple MCP servers for powerful workflows
  • Create custom MCP servers for your specific needs
  • Share successful configurations with team
  • Use MCP inspector for debugging
  • Join MCP community for tips and troubleshooting

Technical Details

Architecture

Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.

Protocols

  • Model Context Protocol (MCP)
  • JSON-RPC 2.0
  • stdio or HTTP transport

Compatibility

  • Claude Desktop
  • Cursor IDE
  • Custom MCP clients

When to Use This

✓ Use When

Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.

✗ Avoid When

Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.

Integration

  • Tool composition: Chain multiple MCP tools in workflows
  • Context augmentation: Provide AI with relevant external data
  • Action delegation: Let AI execute tasks on external systems
  • Bidirectional sync: Keep AI context and external systems in sync

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.

List & Promote Your MCP Server

Share your MCP server with the developer community

GET_STARTED →
MCP server reviews

Ratings

4.652 reviews
  • Isabella Mehta· Dec 28, 2024

    Docy (Documentation Access) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Ava Shah· Dec 20, 2024

    We evaluated Docy (Documentation Access) against two servers with overlapping tools; this profile had the clearer scope statement.

  • Arya Abbas· Dec 20, 2024

    Docy (Documentation Access) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.

  • Hana Desai· Nov 27, 2024

    According to our notes, Docy (Documentation Access) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • William Torres· Nov 19, 2024

    Docy (Documentation Access) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Dev Martin· Nov 15, 2024

    Docy (Documentation Access) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • William Wang· Nov 11, 2024

    Useful MCP listing: Docy (Documentation Access) is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Olivia Huang· Nov 11, 2024

    We wired Docy (Documentation Access) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Evelyn Chawla· Oct 18, 2024

    Docy (Documentation Access) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • William Diallo· Oct 10, 2024

    We wired Docy (Documentation Access) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

showing 1-10 of 52

1 / 6