centy-mcp
v0.14.0
Published
MCP server for centy-daemon — expose centy tools to AI clients like Claude
Readme
centy-mcp
An MCP (Model Context Protocol) server that exposes the centy-daemon gRPC API as tools for AI clients such as Claude Desktop.
Each RPC method in the service becomes an MCP tool, allowing AI agents to manage projects, items, organizations, links, assets, and more.
Requirements
centy-daemon must be running locally. Download it here.
Usage
npx (no install required)
npx centy-mcpGlobal install
npm install -g centy-mcp
centy-mcpBy default the MCP server connects to 127.0.0.1:50051. Override with CENTY_DAEMON_ADDR:
CENTY_DAEMON_ADDR=127.0.0.1:9090 centy-mcpClaude Code configuration
claude mcp add centy -s user -- npx -y centy-mcpClaude Desktop configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"centy": {
"command": "npx",
"args": ["-y", "centy-mcp"]
}
}
}