KosmoKrator

product-management

Productboard MCP Integration for Claude Agent SDK

Connect Productboard to Claude Agent SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

8 functions 6 read 2 write Bearer token auth

Connect Productboard to Claude Agent SDK

Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server.

Add a KosmoKrator stdio MCP server to the Claude Agent SDK options. The gateway is local, scoped to this integration, and starts with --write=deny so Claude Agent SDK can inspect read-capable tools without receiving write access by default.

Productboard MCP Config for Claude Agent SDK

Use a narrow integration list so the agent does not load unrelated tools.

{
  "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

Scoped tools

Expose only Productboard instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Productboard Tools Visible to Claude Agent SDK

Claude Agent SDK sees stable MCP tool names generated from the Productboard integration catalog.

MCP toolSource functionTypeDescription
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.

Related Productboard Pages