GroundDocs MCP server

Provides source-verified documentation lookup for Python libraries and Kubernetes resources, retrieving accurate, version-specific information from authoritative sources rather than potentially hallucinated content.
Back to servers
Setup instructions
Provider
GroundDocs
Release date
May 12, 2025
Language
Python
Stats
4 stars

GroundDocs is a version-aware documentation assistant that connects LLMs to trusted, real-time documentation. It helps reduce hallucinations and ensures accurate, version-specific responses by providing your AI tools with access to official documentation sources.

Installation

The simplest way to install GroundDocs is using the CLI:

npx @grounddocs/cli@latest install <client>

Replace <client> with your IDE or tool of choice. Currently supported clients include:

  • cursor
  • windsurf
  • cline
  • claude
  • witsy
  • enconvo
  • vscode

Manual Setup

If you prefer to set up GroundDocs manually, you can add it to your IDE's MCP (Model Context Protocol) configuration:

  1. Locate your IDE's MCP configuration file
  2. Add the following configuration:
{
  "mcpServers": {
    "@grounddocs/grounddocs": {
      "command": "npx",
      "args": ["-y", "@grounddocs/grounddocs@latest"]
    }
  }
}
  1. After configuring, restart your IDE for the changes to take effect

Supported Documentation

GroundDocs currently supports:

  • Kubernetes - including all versions, version-aware kubectl behavior, API schemas, and feature gates

Usage Examples

Once installed, you can query documentation directly through your AI assistant. GroundDocs will automatically retrieve relevant, version-specific documentation.

Example Query

You can ask version-specific questions about documentation, such as:

What changes were made to the kubectl command behavior in Kubernetes 1.26 regarding pruning during apply operations?

GroundDocs will provide accurate, version-specific information from the official documentation rather than potentially outdated or incorrect information that might be in the AI model's training data.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "grounddocs-grounddocs" '{"command":"npx","args":["-y","@grounddocs/grounddocs@latest"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "@grounddocs/grounddocs": {
            "command": "npx",
            "args": [
                "-y",
                "@grounddocs/grounddocs@latest"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "@grounddocs/grounddocs": {
            "command": "npx",
            "args": [
                "-y",
                "@grounddocs/grounddocs@latest"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later