KosmoKrator

product-management

Productboard MCP Integration for Vercel AI SDK

Connect Productboard to Vercel AI 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 Vercel AI SDK

Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.

Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with --write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.

Productboard MCP Config for Vercel AI SDK

Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.

{
  "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 Vercel AI SDK

Vercel AI 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