Productboard MCP Server

Integrates with the Productboard API, offering 49 specialized tools to manage all major Productboard functionalities.

productboard-mcp

An MCP (Model Context Protocol) server for the Productboard API. Enables AI assistants (Claude, Cursor, etc.) to interact with your Productboard workspace.

Tools

ToolDescription
pb_feature_listList features with filtering
pb_feature_getGet a feature by ID
pb_feature_createCreate a new feature
pb_feature_updateUpdate an existing feature
pb_feature_deleteDelete a feature
pb_product_listList products
pb_product_createCreate a product
pb_product_hierarchyGet full product hierarchy
pb_note_listList customer notes
pb_note_createCreate a customer note
pb_objective_listList objectives
pb_objective_createCreate an objective
pb_objective_updateUpdate an objective
pb_keyresult_listList key results
pb_keyresult_createCreate a key result
pb_keyresult_updateUpdate a key result
pb_release_listList releases
pb_release_createCreate a release
pb_release_updateUpdate a release
pb_release_status_updateUpdate release status
pb_release_timelineGet release timeline

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "productboard": {
      "command": "npx",
      "args": ["-y", "@enreign/productboard-mcp"],
      "env": {
        "PRODUCTBOARD_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Cursor / Other MCP Clients

{
  "mcpServers": {
    "productboard": {
      "command": "npx",
      "args": ["-y", "@enreign/productboard-mcp"],
      "env": {
        "PRODUCTBOARD_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Configuration

Required

VariableDescription
PRODUCTBOARD_API_TOKENYour Productboard API token (Bearer auth)

Optional

VariableDefaultDescription
PRODUCTBOARD_AUTH_TYPEbearerAuth type: bearer or oauth2
PRODUCTBOARD_API_BASE_URLhttps://api.productboard.com/v2API base URL
PRODUCTBOARD_API_TIMEOUT10000API request timeout (ms)
API_RETRY_ATTEMPTS3Number of retry attempts
API_RETRY_DELAY1000Delay between retries (ms)
RATE_LIMIT_GLOBAL100Max requests per window
RATE_LIMIT_WINDOW_MS60000Rate limit window (ms)
CACHE_ENABLEDfalseEnable response caching
CACHE_TTL300Cache TTL (seconds)
LOG_LEVELinfoLog level: trace, debug, info, warn, error, fatal

OAuth2 (optional)

VariableDescription
PRODUCTBOARD_OAUTH_CLIENT_IDOAuth2 client ID
PRODUCTBOARD_OAUTH_CLIENT_SECRETOAuth2 client secret
PRODUCTBOARD_OAUTH_REDIRECT_URIOAuth2 redirect URI

Getting a Productboard API Token

  1. Log in to your Productboard workspace
  2. Go to Profile & SettingsAPI Access
  3. Click Generate API key and copy the token

License

MIT

Related Servers