Bucketeer Docs Local MCP Server
@bucketeer-io
About Bucketeer Docs Local MCP Server
Local MCP Server to query Bucketeer documentation
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"bucketeer-docs-local-mcp-server": {
"command": "npx",
"args": [
"@bucketeer/docs-local-mcp-server",
"build-index"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Bucketeer Docs Local MCP Server?
A Model Context Protocol (MCP) server that provides search and retrieval of Bucketeer’s feature flag and experimentation platform documentation. It enables AI assistants to answer questions about Bucketeer’s features and usage by indexing and serving content from the official documentation repository.
How to use Bucketeer Docs Local MCP Server?
Install dependencies (npm install), build the project (npm run build), and build the document index (npm run build:index). Start the server with npm start or run it via npx @bucketeer/docs-local-mcp-server. Configure the server in your MCP client (e.g., Cursor or Claude Desktop) by adding the npx command to its mcpServers configuration or by using the provided Cursor install deeplink.
Key features of Bucketeer Docs Local MCP Server
- Automatically fetches
.mdxfiles from the GitHub repository. - Intelligent indexing with keyword extraction and relevance scoring.
- Caches documents locally using SHA‑based change detection.
- Two exposed tools:
search_docsandget_document. - Configurable default search result limit (default: 5).
- Supports recursive directory traversal for all documentation subdirectories.
Use cases of Bucketeer Docs Local MCP Server
- AI assistants answering user questions about Bucketeer feature flags.
- Quickly finding and retrieving specific documentation sections on SDKs, experiments, or targeting.
- Integrating Bucketeer documentation context into development tools like Cursor or Claude Desktop.
FAQ from Bucketeer Docs Local MCP Server
What are the system requirements?
Node.js 18+ and npm are required to run the server.
Where does the documentation data come from?
It fetches .mdx files from the docs/ directory of the bucketeer-io/bucketeer-docs repository on GitHub.
How are documents cached?
Files are cached locally as JSON in files/docs/, the document index is stored in files/index/document-index.json, and a GitHub cache with SHA‑based change detection is kept in files/docs/github_cache.json.
How do I update the documentation index?
Run npm run build:index or npx @bucketeer/docs-local-mcp-server build-index. Use the --force flag to ignore the cache and rebuild everything.
What tools does this server provide?
Two tools: search_docs (accepts a query string and optional limit) returns ranked documentation snippets, and get_document (accepts a document path) returns the full content of that document.
Frequently asked questions
What are the system requirements?
Node.js 18+ and npm are required to run the server.
Where does the documentation data come from?
It fetches `.mdx` files from the `docs/` directory of the [bucketeer-io/bucketeer-docs](https://github.com/bucketeer-io/bucketeer-docs) repository on GitHub.
How are documents cached?
Files are cached locally as JSON in `files/docs/`, the document index is stored in `files/index/document-index.json`, and a GitHub cache with SHA‑based change detection is kept in `files/docs/github_cache.json`.
How do I update the documentation index?
Run `npm run build:index` or `npx @bucketeer/docs-local-mcp-server build-index`. Use the `--force` flag to ignore the cache and rebuild everything.
What tools does this server provide?
Two tools: `search_docs` (accepts a query string and optional limit) returns ranked documentation snippets, and `get_document` (accepts a document path) returns the full content of that document.
Basic information
More Memory & Knowledge MCP servers
Obsidian MCP Server
cyanheadsRead, write, search, and surgically edit Obsidian vault notes, tags, and frontmatter via MCP. STDIO or Streamable HTTP.
Memory Bank MCP Server
alioshrA Model Context Protocol (MCP) server implementation for remote memory bank management, inspired by Cline Memory Bank.
Groundwork
Rarefied-EarthGroundwork: company memory for your AI tools. Docs public. Source closed. Public proof needs no account.
MCP Apple Notes
RafalWilinskiTalk with your notes in Claude. RAG over your Apple Notes using Model Context Protocol.
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
Comments