@datarecce/docs-mcp
v0.1.1
Published
Recce documentation service with MCP server and library API
Readme
@datarecce/docs-mcp
MCP server and library API for Recce documentation. Lets LLM agents search and retrieve Recce docs through the Model Context Protocol.
Use as an MCP server
Run directly with npx:
npx -y @datarecce/docs-mcpClaude Code
claude mcp add recce-docs -- npx -y @datarecce/docs-mcpOther MCP clients (Cursor, Windsurf, etc.)
Add to your MCP config:
{
"mcpServers": {
"recce-docs": {
"command": "npx",
"args": ["-y", "@datarecce/docs-mcp"]
}
}
}Use as a library
import { DocsService } from "@datarecce/docs-mcp";
const docs = DocsService.getInstance({ cacheDir: "/app/cache" });
await docs.ensureReady();
const results = docs.searchDocs("schema diff");Tools
| Tool | Description |
|------|-------------|
| searchDocs | Full-text search across Recce documentation |
| getPage | Fetch a specific documentation page by path |
| listSections | Enumerate top-level documentation sections |
| syncDocs | Refresh the local docs cache |
Requirements
- Node.js >= 20
License
Apache-2.0
