Home / MCP / Productboard MCP Server

Productboard MCP Server

Provides programmatic access to Productboard data via MCP endpoints and actions.

javascript
Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
    "mcpServers": {
        "productboard": {
            "command": "npx",
            "args": [
                "-y",
                "productboard-mcp"
            ],
            "env": {
                "PRODUCTBOARD_ACCESS_TOKEN": "<YOUR_TOKEN>"
            }
        }
    }
}

You can integrate Productboard data into your agentic workflows using the Productboard MCP Server. This server lets you perform common Productboard actions through MCP-compatible clients by running locally via Node and npx, enabling streamlined automation and scripting.

How to use

Start the MCP server locally and connect your MCP client to it. You will provide your access token to authorize requests. Once running, you can fetch companies, products, features, notes, and other Productboard data through the MCP endpoints exposed by this server. Use your MCP client to invoke the available actions and handle results within your automation or agent workflows.

How to install

Prerequisites: you need Node.js and npm installed on your system.

Install and start the Productboard MCP Server using NPX. This runs without a global install and uses your local Node environment.

{
  "mcpServers": {
    "productboard": {
      "command": "npx",
      "args": [
        "-y",
        "productboard-mcp"
      ],
      "env": {
        "PRODUCTBOARD_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

Additional notes

Environment variable for access: supply your Productboard access token as PRODUCTBOARD_ACCESS_TOKEN when starting the MCP server. This token authorizes your requests to Productboard through the MCP bridge.