MCP ExplorerExplorer

Productboard

@kenjihikmatullahon 12 days ago
6 MIT
FreeCommunity
Productivity
#Productboard#API
Integrate the Productboard API into agentic workflows via MCP.

Overview

What is Productboard

Productboard MCP Server is a tool that integrates the Productboard API into agentic workflows, allowing for efficient management of product development processes. It simplifies interactions with the Productboard platform by providing a consistent interface for various product management tasks.

Use cases

The Productboard MCP Server can be utilized for automating product feature tracking, managing company details, accessing product and component information, and retrieving specific feature statuses and notes. It streamlines the process of gathering and managing product feedback and insights, enhancing collaboration across teams.

How to use

To use the Productboard MCP Server, you need to obtain an access token from Productboard’s API. Configure your environment by adding the server details in the Claude Desktop configuration file and ensure you include the access token as an environment variable. Once set up, you can execute various commands to interact with the Productboard API directly through your workflows.

Key features

Key features of the Productboard MCP Server include access to company and product details, feature management, status tracking, and detailed component insights. It supports multiple endpoints to facilitate comprehensive product management tasks, enhancing the efficiency of using the Productboard platform.

Where to use

The Productboard MCP Server is suitable for integration into environments that require seamless product management workflows, especially in software development and product teams. It can be effectively used in agile environments, project management tools, and platforms that benefit from structured product feedback and automation.

Content

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.

Tools

get_products
Returns detail of all products. This API is paginated and the page limit is always 100
get_product_detail
Returns detailed information about a specific product
get_features
Returns a list of all features. This API is paginated and the page limit is always 100
get_feature_detail
Returns detailed information about a specific feature
get_components
Returns a list of all components. This API is paginated and the page limit is always 100
get_component_detail
Returns detailed information about a specific component
get_feature_statuses
Returns a list of all feature statuses. This API is paginated and the page limit is always 100
get_notes
Returns a list of all notes
get_note_detail
Returns detailed information about a specific note
get_companies
Returns a list of all companies. This API is paginated and the page limit is always 100
get_company_detail
Returns detailed information about a specific company

Comments