product-management
Productboard MCP Integration for LangChain
Connect Productboard to LangChain through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Productboard to LangChain
Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls.
Use the MCP gateway when the agent should discover tools, or wrap kosmo integrations:call for fixed chains. The gateway is local, scoped to this integration, and starts with
--write=deny so LangChain can inspect read-capable tools without receiving write access by default.
Productboard MCP Config for LangChain
Keep the gateway scoped to the integration and operation class needed by the chain.
{
"mcpServers": {
"kosmokrator-productboard": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=productboard",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=productboard --write=deny Why Use KosmoKrator Here
Expose only Productboard instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Productboard Tools Visible to LangChain
LangChain sees stable MCP tool names generated from the Productboard integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__productboard__productboard_list_features | productboard.productboard_list_features | Read | List features from Productboard. Returns feature names, statuses, descriptions, and product assignments. Supports cursor-based pagination. |
integration__productboard__productboard_get_feature | productboard.productboard_get_feature | Read | Get detailed information about a specific Productboard feature by its ID. |
integration__productboard__productboard_create_feature | productboard.productboard_create_feature | Write | Create a new feature in Productboard. Requires at minimum a name. Optionally set description, product, status, and owner. |
integration__productboard__productboard_list_notes | productboard.productboard_list_notes | Read | List notes (customer feedback) from Productboard. Returns note titles, content, authors, and linked features. Supports cursor-based pagination. |
integration__productboard__productboard_create_note | productboard.productboard_create_note | Write | Create a new note (customer feedback) in Productboard. Requires at minimum a title. Optionally set content, owner, and linked features. |
integration__productboard__productboard_list_products | productboard.productboard_list_products | Read | List products from Productboard. Returns product names, descriptions, and IDs. Supports cursor-based pagination. |
integration__productboard__productboard_list_companies | productboard.productboard_list_companies | Read | List companies from Productboard. Returns company names, domains, and IDs. Supports cursor-based pagination. |
integration__productboard__productboard_get_current_user | productboard.productboard_get_current_user | Read | Get the currently authenticated Productboard user profile. Returns name, email, and role. Useful for verifying API connectivity. |