@drmaxbdc/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., "@@drmaxbdc/productboard-mcplist my recent notes"
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.
@drmaxbdc/productboard-mcp
MCP server for the Productboard API v2. Provides 30 tools covering entities, notes, relationships, configurations, members, and analytics via the Model Context Protocol.
V1 sunset on 2026-07-08. This package is migrating off Productboard API v1. As of this release
list_notes,list_all_notes,get_note,get_note_v1,resolve_note, and most filters onsearch_notesuse v2. The only remaining v1 surfaces are: (a)search_notesfulltext (term) and multi-tag AND filters — auto-fallback only when used, since v2 has no equivalent; (b)add_note_comment— v2 has no note-comments endpoint. Both will stop working on the sunset date and will be removed in the v2.0.0 cleanup.
Features
V2-first — all CRUD plus list/get/search/resolve on notes and entities run on Productboard API v2; v1 used only as a fallback for two specific filters
30 tools — entities CRUD+search, notes CRUD+search+relationships, configurations, members, analytics
search_notes— hybrid v2/v1 search. v2 by default; falls back to v1 only when fulltexttermor multi-tag AND (allTags) is requested.lastrelative windows translate automatically to v2updatedAt.from. Response carriesapiVersionso callers know which shape they got.resolve_note— resolve numeric ID, web UI URL, or deep link to a v2 notelist_all_notes— bulk fetch with auto-pagination via v2 (max 5000)list_members/get_member— workspace member lookup
Related MCP server: Pipedrive Universal MCP Server
Installation
npx -y @drmaxbdc/productboard-mcpAuthentication
This MCP supports two auth paths. OAuth (default) is recommended for fresh installs; PAT (fallback) is fully supported for back-compat and headless / CI use.
OAuth 2.0 (recommended)
When neither PRODUCTBOARD_ACCESS_TOKEN nor a stored OAuth state exists, the MCP server runs the Productboard OAuth Authorization Code flow with PKCE at first start. The resulting access + refresh tokens are persisted to a platform-native cache directory and refreshed automatically.
Each MCP installation needs an OAuth client_id to drive the flow. Three sources, checked in this order:
PRODUCTBOARD_OAUTH_CLIENT_IDenv var — explicit per-consumer override (see below).Embedded Dr.Max default
client_id— baked into the package at build time. Dr.Max users get OAuth working out of the box with zero config; non-Dr.Max consumers should override (the Dr.Max app's consent screen says "Dr.Max BDC", which is confusing for unrelated workspaces).Dynamic Client Registration (
POST /oauth2/register) — documented at developer.productboard.com/reference/oauth-public-client. Currently returns HTTP 404 in production — known upstream bug. The code still attempts it as a last resort; if/when Productboard fixes the endpoint, this becomes the zero-config path for any consumer.
Storage locations:
OS | Path |
macOS |
|
Linux |
|
Windows |
|
Tokens are written with permissions 0600 (POSIX). Refresh is automatic — access tokens are renewed 5 minutes before expiry, and refresh tokens (180-day validity) rotate on every use.
If you need to start setup over (change scope, switch to a different PB workspace, etc.), delete tokens.json and restart the MCP. To also force a new client_id resolution, delete registration.json as well.
Registering your own OAuth app (non-Dr.Max consumers)
Until Productboard's Dynamic Client Registration endpoint comes online, every OAuth app must be registered manually via PB admin UI. Note that PB's UI does not offer a Public Client / PKCE-only option — every manually-registered app is a Confidential Client with a client_secret, so both env vars below are required.
Sign in to Productboard as an admin and open https://app.productboard.com/oauth2/applications.
Click New OAuth application.
Fill in the form. Critical fields:
Redirect URI:
http://127.0.0.1:7779/callback. If you changePRODUCTBOARD_OAUTH_CALLBACK_PORT, also re-register the matching URL here.API V2 Scopes: check whichever subset your team needs. For the full MCP tool surface check all 8:
entities:read,entities:write,entities:delete,notes:read,notes:write,notes:delete,analytics:read,members_pii:read.API V1 Scopes: leave empty (V1 sunsets 2026-07-08; OAuth was never wired to V1).
Save and copy both the issued
client_idandclient_secret(PB only shows the secret once).Set both env vars and restart:
export PRODUCTBOARD_OAUTH_CLIENT_ID='paste-your-client-id-here' export PRODUCTBOARD_OAUTH_CLIENT_SECRET='paste-your-client-secret-here'
The MCP sends client_secret in every POST /oauth2/token call (initial code-for-tokens exchange and every refresh). It is never persisted to tokens.json — read from env at each request so it stays in whatever store you chose for it.
Optional env vars
Env var | Default | Purpose |
| (unset = auto) | Set to |
| (embedded Dr.Max) | Your own OAuth app's client_id. Required for non-Dr.Max consumers until Productboard's dynamic registration endpoint works. |
| (unset) | Required when using a Confidential Client (i.e. anything registered via PB's admin UI). Dr.Max users on tars get this from |
|
| Override the callback port. Re-register the matching |
| (platform-native, see above) | Override the tokens.json location (e.g. for Docker volumes). |
| (platform-native, see above) | Override the registration.json location. |
| (chooser shown) | Space- or comma-separated scopes. Set this to bypass the chooser page. |
Personal Access Token (PAT, fallback)
Generate a PAT in Productboard at Settings → Integrations → Public API. Then set:
export PRODUCTBOARD_ACCESS_TOKEN='your-pat-here'When this env var is set, the MCP uses PAT auth and does not run the OAuth flow. PAT is the right choice for:
Headless environments (CI, Docker containers without a browser, SSH-only servers)
Backwards compatibility with existing deployments that already provision the env var
Quick local development / debugging
PATs do not expire on their own but can be revoked by your PB admin at any time. If your PAT stops working mid-session, the MCP surfaces a structured "switch to OAuth" hint so you know how to recover.
Configuration
Claude Code (claude.json)
{
"mcpServers": {
"productboard": {
"command": "npx",
"args": ["-y", "@drmaxbdc/productboard-mcp"],
"env": {
"PRODUCTBOARD_ACCESS_TOKEN": "your-token-here"
}
}
}
}Tools
Notes (V2)
list_notes— list with filters (owner, creator, date range, archived, processed, source). Hides archived notes by default; passarchived=trueto include.get_note— get by UUIDget_note_v1— DEPRECATED alias forget_note. Will be removed in v2.0.0.search_notes— hybrid v2/v1 search (see Features). ReturnsapiVersion("v1" or "v2") in the response.resolve_note— resolve any identifier (UUID, numeric ID, web UI URL, deep link) to a v2 note. Web UI URL lives atnote.links.html.list_all_notes— bulk fetch via v2 with auto-pagination (max 5000)create_note/update_note/delete_note— CRUD operationsget_note_relationships/create_note_relationship/delete_note_relationship— note linksset_note_customer— set customer relationship on a noteadd_note_comment— DEPRECATED (v1-only). V2 has no comments endpoint; this tool stops working on 2026-07-08.
Entities (features, objectives, initiatives, etc.)
list_entities/get_entity/search_entities— read with filterscreate_entity/update_entity/delete_entity— CRUDget_entity_relationships/create_entity_relationship/delete_entity_relationship— linksset_entity_parent— set parent relationship
Configuration
get_entity_configurations— discover entity types and fieldsget_note_configurations— discover note types and fields
Members
list_members— list workspace members with optional role filterget_member— get member by UUID
Analytics
get_member_activities— member activity metrics
License
MIT — see LICENSE.md
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
- 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/drmaxbdc/productboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server