Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

productboard-mcp

MCP.Pizza Chef: kenjihikmatullah

The productboard-mcp server enables seamless integration of the Productboard API into agentic workflows using the Model Context Protocol (MCP). It exposes Productboard data such as companies, products, features, components, and notes as structured, real-time context for LLMs to interact with. This server facilitates automated product management tasks and enhances AI-driven decision-making by providing direct access to Productboard resources within AI workflows.

Use This MCP server To

Fetch detailed product information from Productboard in real time Retrieve and manage feature statuses for product planning Access company and customer data for contextual AI responses Integrate product notes and components into AI-driven workflows Automate product roadmap updates using LLMs and Productboard data Enable AI agents to query and manipulate Productboard entities Combine Productboard insights with other data sources in AI workflows

README

Productboard MCP Server

Integrate the Productboard API into agentic workflows via MCP

Tools

  1. get_companies
  2. get_company_detail
  3. get_components
  4. get_component_detail
  5. get_features
  6. get_feature_detail
  7. get_feature_statuses
  8. get_notes
  9. get_products
  10. get_product_detail

Setup

Access Token

Obtain your access token referring to this guidance

Usage with Claude Desktop

To use this with Claude Desktop, add the following to your claude_desktop_config.json:

NPX

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

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

productboard-mcp FAQ

How do I authenticate the productboard-mcp server?
You authenticate by providing a Productboard access token as an environment variable named PRODUCTBOARD_ACCESS_TOKEN.
Can I use productboard-mcp with different LLM providers?
Yes, productboard-mcp is provider-agnostic and works with OpenAI, Claude, Gemini, and others.
What Productboard data can I access through this MCP server?
You can access companies, products, features, components, feature statuses, and notes.
How do I configure productboard-mcp for use with Claude Desktop?
Add the productboard server configuration with the NPX command and your access token to claude_desktop_config.json.
Is productboard-mcp open source and modifiable?
Yes, it is licensed under the MIT License, allowing free use, modification, and distribution.
Can productboard-mcp handle real-time updates from Productboard?
It provides real-time context access but depends on API polling or triggers for updates.
What are the main tools exposed by productboard-mcp?
Tools include get_companies, get_company_detail, get_products, get_product_detail, get_features, get_feature_detail, get_feature_statuses, get_components, get_component_detail, and get_notes.