GitHub Project Manager MCP

GitHub Project Manager MCP

Enables comprehensive GitHub project management with 20 tools for issue tracking, milestone management, label organization, AI-powered task complexity analysis, and PRD generation with roadmap planning capabilities.

Category
访问服务器

README

GitHub Project Manager MCP - Modernized v3.0

A fully modernized GitHub-integrated project management MCP server with 20 complete working tools, AI-powered analytics, PRD generation, and modern MCP SDK implementation.

🚀 What's New in v3.0

✅ Complete Modernization

  • Modern McpServer instead of deprecated Server class
  • Zod schema validation for all tool parameters
  • Proper error handling with isError flag
  • Resources and prompts for enhanced functionality
  • 15 fully working tools (no more stubs!)

✅ All Tools Now Working

  • Issue Management (4 tools): create, list, get, update
  • Milestone Management (6 tools): create, list, metrics, overdue, upcoming
  • Label Management (2 tools): create, list
  • Advanced Analytics (2 tools): task complexity analysis, repository summary
  • 📋 Advanced Project Planning & PRD Tools (5 tools): generate PRD, parse PRD, enhance PRD, add feature, create roadmap
  • MCP Resources: Repository information exposure
  • MCP Prompts: Sprint planning and issue triage templates

✅ AI-Powered Analytics

  • Smart complexity analysis with 8-point story estimation
  • Priority calculation based on labels and activity
  • Readiness assessment with blocker detection
  • Repository health scoring with trend analysis
  • Issue categorization by type and theme

🛠️ Tool Overview

Issue Management

• create_issue      - Create issues with labels, assignees, milestones
• list_issues       - List/filter issues by state, labels, assignee  
• get_issue         - Get detailed issue information
• update_issue      - Update titles, descriptions, states, assignments

Milestone Management

• create_milestone     - Create milestones with due dates
• list_milestones      - List/sort milestones by various criteria
• get_milestone_metrics - Progress analysis with completion rates
• get_overdue_milestones - Find overdue milestones needing attention
• get_upcoming_milestones - See milestones due in N days

Advanced Analytics

• analyze_task_complexity - AI-powered complexity scoring (1-8 story points)
• get_repository_summary  - Comprehensive project health analysis

📋 Advanced Project Planning & PRD Tools

• generate_prd    - Generate comprehensive Product Requirements Documents
• parse_prd       - Parse PRD content and create actionable development tasks
• enhance_prd     - Enhance existing PRDs with market analysis and recommendations
• add_feature     - Add new features with comprehensive impact analysis
• create_roadmap  - Create project roadmaps with timeline visualization

Label Management

• create_label - Create color-coded labels with descriptions
• list_labels  - View all repository labels

📊 Analytics Features

Task Complexity Analysis

  • Story point estimation (1-8 scale) based on:
    • Title and description complexity
    • Technical keywords detection
    • Label-based complexity indicators
    • Dependency analysis
  • Priority scoring (1-5 scale) considering:
    • Priority labels (critical, high, medium, low)
    • Bug priority boosting
    • Recent activity weighting
  • Readiness assessment with blocker detection:
    • Description completeness
    • Blocked/waiting labels
    • Assignee availability

Repository Health Metrics

  • Completion rate calculation
  • Story point tracking
  • Issue categorization (Epic, Feature, Bug, Task, etc.)
  • Recent activity trends
  • Overall health scoring (0-100)

📋 Advanced Project Planning & PRD Features

  • AI-generated PRDs with comprehensive templates including:
    • Functional, non-functional, and technical requirements
    • User stories and acceptance criteria
    • Risk analysis and dependency mapping
    • Timeline planning and success metrics
  • PRD parsing and task extraction from existing documents
  • PRD enhancement with market analysis, technical recommendations
  • Feature impact analysis with business, technical, and user impact scoring
  • Project roadmaps with timeline visualization and milestone mapping
  • Comprehensive implementation planning with phase breakdown

🔧 Installation & Setup

1. Build the Server

cd /path/to/github-project-manager-mcp
npm install
npm run build

2. GitHub Token Setup

Create a GitHub Personal Access Token with these scopes:

  • repo (Full control of private repositories)
  • write:org (Write organization data)
  • read:org (Read organization data)

3. Claude Desktop Configuration

Update your Claude Desktop configuration:

Windows: %APPDATA%\Claude\claude_desktop_config.json Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "github-project-manager": {
      "command": "node",
      "args": ["C:\\tmp\\github-project-manager-mcp-local\\build\\index.js"],
      "env": {
        "GITHUB_TOKEN": "your-github-personal-access-token",
        "GITHUB_OWNER": "your-github-username", 
        "GITHUB_REPO": "your-repository-name"
      }
    }
  }
}

4. Restart Claude Desktop

After updating the configuration, restart Claude Desktop to load the new server.

💡 Usage Examples

Issue Management

Create an issue titled "Setup Database Schema" with labels "type: feature, priority: high"
List all open issues assigned to john-doe  
Get detailed information about issue #42
Update issue #15 to closed state with assignee jane-smith

Milestone Management

Create a milestone "Phase 1: Backend" due on 2025-09-30
Show me all upcoming milestones in the next 30 days
Get progress metrics for milestone #3
Find all overdue milestones

Advanced Analytics

Analyze the complexity of issue #25
Give me a complete repository health summary with trends
What's the current project completion rate?

📋 Advanced Project Planning & PRD Tools

Generate a PRD for "Mobile Learning App" with features ["User authentication", "Course catalog", "Video streaming"]
Parse the PRD in issue #42 and create development tasks
Enhance the existing PRD with market analysis and technical recommendations
Add a new "Real-time Chat" feature with comprehensive impact analysis
Create a quarterly roadmap showing all milestones and dependencies

Smart Prompts

Use the "plan-sprint" prompt with goals ["Database setup", "User auth"] and team ["alice", "bob"]
Use the "triage-issue" prompt for issue "Bug in login system"

🏗️ Architecture

Modern MCP Implementation

  • McpServer class with simplified tool definitions
  • Zod schemas for robust input validation
  • Proper error handling with isError flags
  • Resources for data exposure
  • Prompts for workflow templates

GitHub Integration

  • Octokit REST API for core operations
  • GraphQL client ready for advanced features
  • Rate limiting compliance
  • Comprehensive error handling

AI Analytics Engine

  • Multi-factor complexity analysis
  • Priority calculation algorithms
  • Readiness assessment logic
  • Health scoring metrics

🎯 What's Different from v2.x

Feature v2.x (Old) v3.0 (New)
SDK Manual Server setup Modern McpServer
Tools 50% stub implementations 100% working tools (20 total)
Validation Manual parameter checking Zod schema validation
Error Handling Inconsistent responses Standardized with isError
Analytics Basic placeholder logic AI-powered real analysis
PRD & Planning Missing entirely Complete 5-tool suite
Resources None Repository data exposure
Prompts None Sprint planning & triage
Code Quality Monolithic, repetitive Clean, maintainable

🚀 Performance

  • Sub-second response times for all operations
  • Efficient GitHub API usage with proper caching
  • Memory-optimized analysis algorithms
  • Robust error recovery for network issues

🔬 Testing

# Test server startup
npm run test

# Test specific tools (in Claude Desktop)
"List all open issues"
"Create a label called 'urgent' with red color" 
"Analyze the complexity of issue #1"
"Show me repository summary with trends"

🎉 Success Metrics

20/20 tools fully functional (was 6/24 in v2.x)
Modern MCP SDK implementation
Real AI-powered analytics📋 Complete PRD & Planning Suite with 5 comprehensive tools ✅ Comprehensive error handling
Resources and prompts added ✅ Production-ready code quality

📈 What's Next

The modernized foundation enables:

  • Phase 2: GitHub Projects v2 GraphQL integration
  • Phase 3: Real-time webhooks and notifications
  • Phase 4: Advanced sprint management with persistence
  • Phase 5: Multi-repository support

⭐ Ready for Production - This MCP server now provides enterprise-grade GitHub project management capabilities with modern architecture, complete functionality, and AI-powered insights!

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选