Labsco
pipe-cd logo

PipeCD Docs

β˜… 5

from pipe-cd

Search and retrieve official PipeCD documentation.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeQuick setup

PipeCD Docs MCP Server

A local MCP server for searching official PipeCD docs.

Overview

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.

Tools

search_docs

Executes a full-text search on PipeCD docs.

  • Parameters:
    • query: Search keywords (space-separated, AND search)
    • offset: Start position for results
    • limit: Number of results to return (default: 20)

read_docs

Returns the content of the specified page.

  • Parameters:
    • path: Relative path of the document (after "docs/content/en/")

Implementation Notes

  • Uses sparse-checkout to minimize clone size and speed up the process.
  • Titles are extracted from the Markdown front matter.
  • The search logic of search_docs is so simple for now.

Contributing

Code of Conduct

PipeCD follows the CNCF Code of Conduct. Please read it to understand which actions are acceptable and which are not.

Get Involved

  • Slack: #pipecd channel on CNCF Slack for discussions related to PipeCD development.
  • Community Meeting: Every other Wednesdays. Search here.

Improvements

  • Bug:
    • Please open an Issue and describe the problem. Or, open a PR with if it's easy one.
  • Enhancement / Feature Request:
    • For small changes including docs or adding tests, please open a PR.
    • For new features or big enhancement, basically, please open an Issue and discuss there before sending a PR. We cannot accept all requests in some cases.
  • Security issue:

Release Flow

  1. Run the prepare release workflow with specifing the new version. It will create a PR to update the version.
  2. Review the PR and merge it.
  3. Create a Release on GitHub with a new tag. Then, the release package workflow will publish a new npm package.