Name: deckbase-mcp-server
Display Name: Deckbase MCP Server
Description: MCP server for the Deckbase project. Exposes project documentation, template blocks, and project context so AI assistants can read Deckbase docs and understand the codebase.
Repository URL: https://github.com/deckbase/deckbase-web
Package Identifier: deckbase-mcp-server (npm)
Transport: stdio
Version: 1.0.0
Tags/Category: developer-tools, documentation, productivity
README Summary (if there's a long description field): The Deckbase MCP server provides two tools for AI assistants:
- list_docs — List all Markdown files in the docs/ directory
- read_doc — Read a doc by path (e.g. STATE_BASED_SYNC_MOBILE.md)
And one resource:
- deckbase://docs/
— Read any doc from the docs/ folder
Use it locally (stdio) via Cursor or any MCP client, or hosted via POST /api/mcp with an API key.
If mcp.so has additional fields like "Installation command" or "Example usage", use:
Install: npm install -g deckbase-mcp-server or run node mcp-server/index.js directly from the repo.
Usage with Cursor (stdio): { "mcpServers": { "deckbase": { "command": "node", "args": ["/absolute/path/to/deckbase-web/mcp-server/index.js"] } } }
Server Config
{
"mcpServers": {
"deckbase": {
"url": "https://www.deckbase.co/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}