product-management
Productboard MCP Gateway for AI Agents
Expose Productboard tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
8 functions 6 read 2 write Bearer token auth
Productboard MCP Gateway
Expose Productboard to MCP clients with `kosmokrator mcp:serve --integration=productboard`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=productboard --write=deny --json {
"mcpServers": {
"kosmokrator-productboard": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=productboard",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=productboard --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__productboard__productboard_list_features | productboard.productboard_list_features | Read read |
integration__productboard__productboard_get_feature | productboard.productboard_get_feature | Read read |
integration__productboard__productboard_create_feature | productboard.productboard_create_feature | Write write |
integration__productboard__productboard_list_notes | productboard.productboard_list_notes | Read read |
integration__productboard__productboard_create_note | productboard.productboard_create_note | Write write |
integration__productboard__productboard_list_products | productboard.productboard_list_products | Read read |
integration__productboard__productboard_list_companies | productboard.productboard_list_companies | Read read |
integration__productboard__productboard_get_current_user | productboard.productboard_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.