Productboard MCP Server
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 MCP Serverget unprocessed notes about login issues"
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 Server
MCP server that lets Claude Code fetch notes, search features, create features, and link notes to features in Productboard. Includes a triage skill for processing customer feedback.
Setup
Clone and build:
git clone git@github.com:djcorbett96/kojo-productboard-mcp.git
cd kojo-productboard-mcp
npm install
npm run buildGet a Productboard API token from your workspace admin settings under Integrations > Notes API.
Add to your Claude Code MCP config (
.mcp.jsonin your project root or~/.claude/mcp.jsonfor global):
{
"mcpServers": {
"productboard": {
"command": "node",
"args": ["/path/to/kojo-productboard-mcp/build/index.js"],
"env": {
"PRODUCTBOARD_API_TOKEN": "your-token-here",
"PRODUCTBOARD_TRIAGE_COMPONENT_ID": "",
"PRODUCTBOARD_DEFAULT_STATUS_ID": ""
}
}
}
}Env Variable | Required | Description |
| Yes | Your Productboard API token |
| For feature creation | Component ID where new triage features are created. Find this in Productboard's feature board URL or via the API. |
| For feature creation | Status ID for new features (e.g., "New idea"). Use |
Claude Code launches the server automatically -- no need to run it manually.
Related MCP server: Canny MCP Server
Tools
fetch_notes
Fetches notes from Productboard with optional filtering.
Parameter | Type | Description |
| string[] | Filter to notes containing at least one of these tags |
| string | Full-text search on note titles and content |
| string | Notes created on/after this date -- |
| string | Filter by processing state: |
| number | Max notes to return (default: 100, max: 1000) |
All parameters are optional. The server handles pagination automatically.
search_features
Searches existing features by keyword. Paginates through all features and performs client-side matching on names and descriptions.
Parameter | Type | Description |
| string | Search term to match against feature names and descriptions (required) |
| number | Max matching features to return (default: 25, max: 100) |
create_feature
Creates a new feature in Productboard. Requires PRODUCTBOARD_TRIAGE_COMPONENT_ID and PRODUCTBOARD_DEFAULT_STATUS_ID env vars.
Parameter | Type | Description |
| string | Feature name (required) |
| string | Feature description (supports HTML) |
| string | Override the default triage component |
| string | Override the default status |
link_note_to_feature
Links a customer feedback note to a feature for tracking and prioritization.
Parameter | Type | Description |
| string | The note ID to link (required) |
| string | The feature ID to link to (required) |
Triage Skill
The repo includes a Claude Code skill for triaging unprocessed Productboard notes. It fetches notes, matches them to existing features, proposes new features when needed, and waits for your approval before taking action.
Skill Setup
Copy the skill into your project's Claude Code skills directory:
cp -r /path/to/kojo-productboard-mcp/.claude/skills/triage /your/project/.claude/skills/triageOr symlink it:
ln -s /path/to/kojo-productboard-mcp/.claude/skills/triage /your/project/.claude/skills/triageUsage
Run the skill in Claude Code with your product area tags:
/triage Warehouse, Procurement
/triage AP past month
/triage Platform, Integrations past 2 weeksThe skill will:
Fetch unprocessed notes matching your tags
Search for existing features that match each note
Present a triage report with proposed actions (link to existing feature, create new feature, or flag for manual review)
Wait for your approval before creating any features or linking any notes
The fetch_notes and search_features calls are pre-approved in the skill config. You'll only be prompted to approve create_feature and link_note_to_feature calls.
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.
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/djcorbett96/kojo-productboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server