by kenjihikmatullah
Integrate the Productboard API into agentic workflows via MCP.
Productboard MCP Server is a tool that allows you to integrate the Productboard API into agentic workflows. It provides a set of tools to interact with Productboard data, such as companies, components, features, and notes.
To use Productboard MCP Server, you need to obtain an access token from Productboard. Once you have the token, you can use it with Claude Desktop by adding a configuration to your claude_desktop_config.json
file. Alternatively, you can use it via NPX by running a command with your access token as an environment variable.
Productboard MCP Server provides the following tools for interacting with the Productboard API:
get_companies
: Retrieve a list of companies.get_company_detail
: Get detailed information about a specific company.get_components
: Retrieve a list of components.get_component_detail
: Get detailed information about a specific component.get_features
: Retrieve a list of features.get_feature_detail
: Get detailed information about a specific feature.get_feature_statuses
: Retrieve a list of feature statuses.get_notes
: Retrieve a list of notes.get_products
: Retrieve a list of products.get_product_detail
: Get detailed information about a specific product.Q: How do I get an access token for Productboard?
A: You can obtain your access token by referring to the guidance provided in the Productboard developer documentation: https://developer.productboard.com/reference/authentication#public-api-access-token
Q: What is the license for Productboard MCP Server?
A: Productboard 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.
Integrate the Productboard API into agentic workflows via MCP
get_companies
get_company_detail
get_components
get_component_detail
get_features
get_feature_detail
get_feature_statuses
get_notes
get_products
get_product_detail
Obtain your access token referring to this guidance
To use this with Claude Desktop, add the following 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. 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.
Reviews feature coming soon
Stay tuned for community discussions and feedback