productboard-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@productboard-mcpList features with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
productboard-mcp
An MCP (Model Context Protocol) server for the Productboard API. Enables AI assistants (Claude, Cursor, etc.) to interact with your Productboard workspace.
Tools
Tool | Description |
| List features with filtering |
| Get a feature by ID |
| Create a new feature |
| Update an existing feature |
| Delete a feature |
| List products |
| Create a product |
| Get full product hierarchy |
| List customer notes |
| Create a customer note |
| List objectives |
| Create an objective |
| Update an objective |
| List key results |
| Create a key result |
| Update a key result |
| List releases |
| Create a release |
| Update a release |
| Update release status |
| Get release timeline |
Related MCP server: MCP OpenProject Server
Installation
Option 1: One-click install (.mcpb bundle) — Recommended
Download the latest .mcpb file from the Releases page and drag it into Claude Desktop (Developer → Extensions → Install), or double-click it in a compatible MCP client.
The bundle is self-contained — no cloning or building required.
After installing, set your PRODUCTBOARD_API_TOKEN in the extension settings.
Option 2: Local install (manual)
# 1. Clone the repo
git clone https://github.com/Enreign/productboard-mcp.git
cd productboard-mcp
# 2. Install dependencies and build
npm install --include=dev
npm run buildThen add to your claude_desktop_config.json:
{
"mcpServers": {
"productboard": {
"command": "node",
"args": ["/absolute/path/to/productboard-mcp/dist/index.js"],
"env": {
"PRODUCTBOARD_API_TOKEN": "your-api-token-here",
"LOG_LEVEL": "error"
}
}
}
}Important: Set
LOG_LEVELtoerror(notinfo). MCP uses stdio for communication — info-level logs printed to stdout will interfere with the protocol and cause the server to lock up.
Option 3: npx
⚠️ Coming soon — not yet published to npm. Use Option 1 or 2 above.
{
"mcpServers": {
"productboard": {
"command": "npx",
"args": ["-y", "@enreign/productboard-mcp"],
"env": {
"PRODUCTBOARD_API_TOKEN": "your-api-token-here",
"LOG_LEVEL": "error"
}
}
}
}Getting a Productboard API Token
Log in to your Productboard workspace
Go to Profile & Settings → API Access
Click Generate API key and copy the token
Configuration
Required
Variable | Description |
| Your Productboard API token (Bearer auth) |
Optional
Variable | Default | Description |
|
| Auth type: |
|
| API base URL |
|
| API request timeout (ms) |
|
| Number of retry attempts |
|
| Delay between retries (ms) |
|
| Max requests per window |
|
| Rate limit window (ms) |
|
| Enable response caching |
|
| Cache TTL (seconds) |
|
| Log level: |
Note for MCP clients: Always set
LOG_LEVEL=errorwhen using with Claude Desktop, Cursor, or any stdio-based MCP client. Higher log levels write to stdout and will break the MCP protocol.
OAuth2 (optional)
Variable | Description |
| OAuth2 client ID |
| OAuth2 client secret |
| OAuth2 redirect URI |
Troubleshooting
"MCP server locks up / produces error logs"
→ Add "LOG_LEVEL": "error" to the env block in your MCP config. Info logs written to stdout interfere with the stdio transport.
"npx fails / package not found"
→ The package is not yet published to npm. Use the .mcpb bundle or local install above.
"command not found after local build"
→ Point args at the full absolute path to dist/index.js, not the productboard-mcp.js wrapper.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceIntegrates Productboard API into agentic workflows, allowing interaction with companies, components, features, notes, and products from the Productboard platform.Last updated119213MIT
- Flicense-qualityDmaintenanceEnables AI assistants to manage projects through OpenProject's API, providing complete project management capabilities including work packages, tasks, and team collaboration features.Last updated
- Alicense-qualityDmaintenanceEnables AI assistants to fully interact with Asana, including creating and managing tasks, projects, time tracking, and search, all through natural language.Last updated351MIT
- Alicense-qualityBmaintenanceEnables AI assistants to interact with Basecamp projects, messages, to-dos, and Card Tables, with read-only access by default and write operations requiring explicit approval.Last updatedMIT
Related MCP Connectors
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Connect your AI assistants to Keboola and expose your data, transformations, SQL queries, ...
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Enreign/productboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server