ProofHub MCP Server
Enables AI assistants to fetch ProofHub task details, comments, and bug tracker links from a URL, streamlining development workflows.
README
๐ ProofHub MCP Server
A Model Context Protocol (MCP) server that bridges ProofHub's project management capabilities with AI assistants like Claude, GitHub Copilot, and Cursor. Paste a ProofHub task URL in your AI chat, and the agent automatically fetches task details, comments, and bug tracker links to help you complete development tasks faster.
๐ฏ What This Solves
As a developer working with ProofHub for task management, you normally have to:
- Open ProofHub in a browser
- Navigate to the task
- Read the description and all comments
- Copy relevant bug tracker links (Jira, Linear, GitHub Issues, etc.)
- Context-switch back to your code editor
With this MCP server, simply paste the ProofHub URL into your AI assistant, and it automatically:
- โ Fetches the complete task description
- โ Retrieves all comments and history
- โ Extracts bug tracker links from anywhere in the task
- โ Provides structured context for the AI to help you code
โก Features
- ๐ Secure: API key stored in environment variables, never in code
- โฑ๏ธ Rate Limit Handling: Automatically respects ProofHub's 25 req/10s limit with retry logic
- ๐งน HTML Cleanup: Strips HTML tags from descriptions/comments for clean AI consumption
- ๐ Smart Link Extraction: Regex patterns detect bug tracker URLs across all text fields
- ๐ฏ One-Shot Tool:
get_task_with_bug_linksfetches everything in a single call - ๐ก๏ธ Error Handling: Graceful error messages with API status codes
๐ Quick Start
1. Installation
npm install
2. Configuration
Create a .env file (use .env.example as template):
PROOFHUB_API_KEY=your_api_key_here
PROOFHUB_API_BASE=https://company.proofhub.com/api/v3
Getting your API key: Log in to ProofHub โ Account Settings โ Apps & Integrations โ API โ Generate new API key
3. Connect to Your AI Assistant
๐ค Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"proofhub": {
"command": "node",
"args": ["/absolute/path/to/proofhub-mcp/index.js"],
"env": {
"PROOFHUB_API_KEY": "your_key_here"
}
}
}
}
Config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
๐ป VS Code Copilot
Add to .vscode/mcp.json in your workspace or user settings:
{
"servers": {
"proofhub": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/proofhub-mcp/index.js"],
"env": {
"PROOFHUB_API_KEY": "your_key_here"
}
}
}
}
๐ Available Tools
| Tool | Description | Use Case |
|---|---|---|
proofhub_parse_url |
Extracts project/list/task IDs from a ProofHub URL | Parse URL before calling other tools |
proofhub_get_task |
Fetches complete task details (title, description, stage, custom fields, assignees) | Get full task context |
proofhub_get_comments |
Retrieves all task comments with timestamps | Review team discussions |
proofhub_get_task_with_bug_links |
โญ One-shot: Fetches task + comments + auto-extracts bug tracker URLs | Most useful - get everything in one call |
proofhub_create_comment |
Posts a new comment on a task | Update task from your AI chat |
proofhub_get_task_history |
Fetches activity/stage change history | Track task evolution |
๐ก Usage Examples
Example 1: Fetch Task Context
Simply paste a ProofHub URL in your AI chat:
Get context for this task:
https://kpi.proofhub.com/bappswift/#app/todos/project-7189443252/list-270280503800/task-514774338823
The AI will call proofhub_get_task_with_bug_links and return:
- Task title and description
- All comments (cleaned from HTML)
- List of bug tracker links found
- Stage, assignees, and custom fields
Example 2: Development Workflow
I need to work on this ProofHub task:
https://kpi.proofhub.com/.../task-514774338823
Fetch the task, find any Jira links, and help me understand what needs to be built.
The AI will:
- Fetch the complete task context
- Extract Jira/GitHub/Linear links
- Use your bug tracker MCP to fetch issue details
- Provide a comprehensive development plan
Example 3: Update Task
Add a comment to task 514774338823 in project 7189443252, list 270280503800:
"Completed the API endpoint implementation. Ready for review."
๐ค Contributing
Contributions welcome! Fork the repo, make your changes, and submit a pull request.
References
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.