Enreign/productboard-mcp
If you are the rightful owner of productboard-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Productboard MCP Server is a comprehensive Model Context Protocol server that integrates with the Productboard API, offering full functionality coverage through 49 specialized tools.
pb_feature_create
Create new features
pb_product_create
Create products/components
pb_note_create
Create customer feedback notes
pb_user_current
Get current user info
pb_company_list
List companies
Productboard MCP Server
Overview
A complete Model Context Protocol (MCP) server that provides comprehensive integration with the Productboard API. This server enables AI assistants and other MCP clients to interact with Productboard through 49 specialized tools covering 100% of major Productboard functionalities including features, products, customer feedback, users, OKRs, releases, webhooks, analytics, and more.
Features
š Robust Authentication
- Bearer token support for simple integrations
- OAuth2 flow for enterprise scenarios
- Secure credential storage with encryption
- Automatic token refresh and validation
š ļø Comprehensive Tool Coverage
Total Tools Supported: 49 unique Productboard MCP tools representing 100% coverage of the Phase 5 specification.
Feature Management (6 tools) ā
pb_feature_create
- Create new featurespb_feature_list
- List features with filteringpb_feature_get
- Get detailed feature informationpb_feature_update
- Update existing featurespb_feature_delete
- Delete or archive featurespb_feature_bulk_update
- Bulk update multiple features
Product Management (3 tools) ā
pb_product_create
- Create products/componentspb_product_list
- List products and componentspb_product_hierarchy
- Get product hierarchy
Note Management (3 tools) ā
pb_note_create
- Create customer feedback notespb_note_list
- List notes with filteringpb_note_attach
- Attach notes to features
User Management (2 tools) ā
pb_user_current
- Get current user infopb_user_list
- List workspace users
Company Management (1 tool) ā
pb_company_list
- List companies
Objectives & Key Results (7 tools) ā
pb_objective_create
- Create objectivespb_objective_list
- List objectivespb_objective_update
- Update objectivespb_objective_link_feature
- Link features to objectivespb_keyresult_create
- Create key resultspb_keyresult_list
- List key resultspb_keyresult_update
- Update key results
Release Management (7 tools) ā
pb_release_create
- Create releasespb_release_list
- List releasespb_release_update
- Update releasespb_release_feature_add
- Add features to releasespb_release_feature_remove
- Remove features from releasespb_release_timeline
- Get release timelinepb_release_status_update
- Update release status
Custom Fields (3 tools) ā
pb_customfield_create
- Create custom fieldspb_customfield_list
- List custom fieldspb_customfield_value_set
- Set custom field values
Webhooks (5 tools) ā
pb_webhook_create
- Create webhook subscriptionspb_webhook_list
- List webhookspb_webhook_update
- Update webhook settingspb_webhook_delete
- Delete webhookspb_webhook_test
- Test webhook endpoints
Search & Analytics (7 tools) ā
pb_search
- Global searchpb_search_features
- Advanced feature searchpb_search_notes
- Advanced note searchpb_search_products
- Product searchpb_analytics_feature_metrics
- Feature analyticspb_analytics_user_engagement
- User engagement metricspb_analytics_feedback_trends
- Feedback trend analysis
Bulk Operations (5 tools) ā
pb_feature_bulk_create
- Bulk create featurespb_feature_bulk_delete
- Bulk delete featurespb_note_bulk_create
- Bulk create notespb_note_bulk_attach
- Bulk attach notes
Integrations (2 tools) ā
pb_jira_sync
- JIRA synchronizationpb_to_jira
- Export to JIRA
Export (1 tool) ā
pb_export
- Data export functionality
š Performance & Reliability
- Rate limiting with token bucket algorithm
- Automatic retry with exponential backoff
- Response caching for read operations
- Comprehensive error handling and logging
- Concurrent request support with proper queuing
š Security First
- No hardcoded credentials
- Input validation and sanitization
- HTTPS-only communication
- Encrypted credential storage
- Comprehensive audit logging
Quick Start
Prerequisites
- Node.js 18+
- Productboard Pro plan or higher (for API access)
- MCP-compatible client (Claude Desktop, etc.)
Installation
-
Clone the repository
git clone https://github.com/Enreign/productboard-mcp-private.git cd productboard-mcp-private
-
Install dependencies
npm install
-
Configure environment
cp .env.example .env # Edit .env with your Productboard credentials
-
Build and start
npm run build npm start
Environment Configuration
Create a .env
file with your Productboard credentials:
# Bearer Token Authentication (recommended for getting started)
PRODUCTBOARD_API_TOKEN=your-api-token
# OAuth2 Authentication (for production use)
OAUTH_CLIENT_ID=your-client-id
OAUTH_CLIENT_SECRET=your-client-secret
# Server Configuration
MCP_SERVER_PORT=3000
LOG_LEVEL=info
CACHE_ENABLED=true
MCP Client Configuration
Add this server to your MCP client configuration:
{
"mcpServers": {
"productboard": {
"command": "node",
"args": ["/path/to/productboard-mcp-private/dist/index.js"],
"env": {
"PRODUCTBOARD_API_TOKEN": "your-token-here"
}
}
}
}
Development
Available Scripts
npm run dev
- Start development server with hot reloadnpm run build
- Build for productionnpm test
- Run test suitenpm run test:watch
- Run tests in watch modenpm run test:coverage
- Generate coverage reportnpm run lint
- Run ESLintnpm run format
- Format code with Prettier
Project Structure
src/
āāā core/ # MCP server core functionality
āāā auth/ # Authentication management
āāā api/ # Productboard API client
āāā tools/ # MCP tool implementations
āāā middleware/ # Rate limiting, caching, validation
āāā utils/ # Logging, configuration, helpers
tests/
āāā unit/ # Unit tests
āāā integration/ # Integration tests
āāā e2e/ # End-to-end tests
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Make your changes
- Add tests for new functionality
- Ensure all tests pass (
npm test
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Current Status
This project provides complete coverage of the Productboard API through 49 specialized MCP tools. See for detailed implementation status and development history.
Implementation Progress:
- ā Core infrastructure (100%)
- ā Feature management (100% - 6/6 tools)
- ā Product management (100% - 3/3 tools)
- ā Note management (100% - 3/3 tools)
- ā User management (100% - 2/2 tools)
- ā Company management (100% - 1/1 tool)
- ā OKR management (100% - 7/7 tools)
- ā Release management (100% - 7/7 tools)
- ā Custom fields (100% - 3/3 tools)
- ā Webhooks (100% - 5/5 tools)
- ā Search & Analytics (100% - 7/7 tools)
- ā Bulk operations (100% - 5/5 tools)
- ā Integrations (100% - 2/2 tools)
- ā Export (100% - 1/1 tool)
Total: 49/49 tools (100% complete) š
License
MIT License - see file for details.
Support
- š
- š Issue Tracker
- š¬ Discussions