KosmoKrator

product-management

Productboard MCP Integration for Cursor

Connect Productboard to Cursor 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 Cursor

Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.

Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with --write=deny so Cursor can inspect read-capable tools without receiving write access by default.

Productboard MCP Config for Cursor

Use the same KosmoKrator install and integration credentials that power terminal and headless runs.

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

Cursor 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