PipeCD Docs MCP Server

A local MCP server for searching official PipeCD docs.

Local serverstdio

What is the PipeCD Docs MCP server?

PipeCD Docs MCP server exists for a simple reason — assistants are far more useful when they can act on PipeCD Docs directly instead of describing what you should do. A local MCP server for searching official PipeCD docs.

What you get

This server clones the official PipeCD docs from GitHub and provides simple full-text search and document retrieval APIs via the MCP protocol. Documentation is cloned into a temporary directory, and Markdown files are indexed by extracting their titles and content.

What the assistant can call

Once PipeCD Docs is connected, these are the calls the assistant has available:

Configuration and credentials

You will need one environment variable: YOUR_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  1. Create a PAT with read:packages scope. Details 2. Add the following config to your .npmrc file.

Setting it up

Installation goes through your MCP client rather than a global install: point it at Add on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. PipeCD Docs's toolset — Prerequisites, Cursor, search_docs and 2 more — is a fair guide to whether it matches your workflow. It is maintained by pipe-cd; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the pipecd docs mcp server does with a few real requests.

Available tools

ToolWhat it does
Prerequisites1. Create a PAT with read:packages scope. [Details](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry)
CursorThe Cursor tool exposed by this server.
search_docsThe search_docs tool exposed by this server.
read_docsThe read_docs tool exposed by this server.
ImprovementsThe Improvements tool exposed by this server.

How to install the PipeCD Docs MCP server

{
  "mcpServers": {
    "docs-mcp-server-pipe-cd": {
      "command": "npx",
      "args": ["-y", "Add"],
      "env": {
        "YOUR_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  1. Create a PAT with read:packages scope. Details 2. Add the following config to your .npmrc file.
VariableDescriptionRequired
YOUR_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use PipeCD Docs to Prerequisites.
  • Use PipeCD Docs to Cursor.
  • Use PipeCD Docs to search docs.

Frequently asked questions

It provides two tools: `search_docs` for full-text search (with parameters `query`, `offset`, `limit`) and `read_docs` for retrieving a page’s content by its relative path.