This repository provides a Productboard MCP server that integrates the Productboard API into agentic workflows, offering tools to retrieve details about companies, components, features, notes, and products. This repository provides
Integrate the Productboard API into agentic workflows via MCP. This server enables interaction with Productboard data through agentic systems.
The server provides access to the following Productboard API endpoints:
get_companies
: Retrieves a list of companies.get_company_detail
: Retrieves details for a specific company.get_components
: Retrieves a list of components.get_component_detail
: Retrieves details for a specific component.get_features
: Retrieves a list of features.get_feature_detail
: Retrieves details for a specific feature.get_feature_statuses
: Retrieves a list of feature statuses.get_notes
: Retrieves a list of notes.get_products
: Retrieves a list of products.get_product_detail
: Retrieves details for a specific product.Obtain your access token referring to this guidance.
To use this with Claude Desktop, add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"productboard": {
"command": "npx",
"args": [
"-y",
"productboard-mcp"
],
"env": {
"PRODUCTBOARD_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
This MCP server is licensed under the MIT License, allowing free use, modification, and distribution subject to the MIT License terms. See the LICENSE file for details.
kenjihikmatullah/productboard-mcp
February 26, 2025
March 21, 2025
TypeScript