product-management
Productboard MCP Integration for OpenAI Agents SDK
Connect Productboard to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Productboard to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Productboard MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"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 OpenAI Agents
OpenAI Agents 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. |