Cover image
Try Now
2025-04-03

用于项目管理的MCP服务器

3 years

Works with Finder

1

Github Watches

1

Github Forks

2

Github Stars

Project MCP Server

An MCP server implementation that provides tools for managing project knowledge graphs, enabling structured representation of projects, tasks, milestones, resources, and team members. This server helps project managers track progress, manage risks, allocate resources, and make informed decisions.

Features

  • Persistent Project Context: Maintain a structured knowledge graph of project entities and relationships across multiple sessions
  • Session Management: Track project management sessions with unique IDs and record progress over time
  • Project Status Tracking: Monitor project health, risks, and issue status in real time
  • Task Dependencies: Visualize and manage dependencies between tasks to identify bottlenecks
  • Milestone Progress: Track progress towards key project milestones
  • Resource Allocation: Monitor how resources are distributed across projects and tasks
  • Risk Assessment: Identify, monitor, and mitigate project risks
  • Decision Logging: Record important project decisions and their context
  • Team Member Management: Track assignments and workloads for team members
  • Project Timeline Analysis: Analyze project timelines including critical paths

Entities

The Project MCP Server recognizes the following entity types:

  • project: The main container for all related entities
  • task: Individual work items that need to be completed
  • milestone: Key checkpoints or deliverables in the project
  • resource: Materials, tools, or assets needed for the project
  • teamMember: People involved in the project
  • note: Documentation, ideas, or observations
  • document: Formal project documents
  • issue: Problems or blockers
  • risk: Potential future problems
  • decision: Important choices made during the project
  • dependency: External requirements or prerequisites
  • component: Parts or modules of the project
  • stakeholder: People affected by or interested in the project
  • change: Modifications to project scope or requirements
  • status: Entity status values (inactive, active, complete)
  • priority: Priority level values (high, low)

Relationships

Entities can be connected through the following relationship types:

  • part_of: Indicates an entity is a component/subset of another
  • depends_on: Shows dependencies between entities
  • assigned_to: Links tasks to team members
  • created_by: Tracks who created an entity
  • modified_by: Records who changed an entity
  • related_to: Shows general connections between entities
  • blocks: Indicates one entity is blocking another
  • manages: Shows management relationships
  • contributes_to: Shows contributions to entities
  • documents: Links documentation to entities
  • scheduled_for: Connects entities to dates or timeframes
  • responsible_for: Assigns ownership/responsibility
  • reports_to: Indicates reporting relationships
  • categorized_as: Links entities to categories or types
  • required_for: Shows requirements for completion
  • discovered_in: Links issues to their discovery context
  • resolved_by: Shows what resolved an issue
  • impacted_by: Shows impact relationships
  • stakeholder_of: Links stakeholders to projects/components
  • prioritized_as: Indicates priority levels
  • has_status: Links entities to their current status (inactive, active, complete)
  • has_priority: Links entities to their priority level (high, low)
  • precedes: Indicates that one task comes before another in a sequence

Available Tools

The Project MCP Server provides these tools for interacting with project knowledge:

startsession

Starts a new project management session, generating a unique session ID and displaying current projects, tasks, milestones, risks, and recent sessions. Shows status information via has_status relations, priority levels via has_priority relations, and identifies tasks ready to be worked on next based on sequential dependencies.

loadcontext

Loads detailed context for a specific entity (project, task, etc.), displaying relevant information based on entity type. Includes status information (inactive, active, complete), priority levels (high, low), and sequential task relationships.

endsession

Records the results of a project management session through a structured, multi-stage process:

  1. summary: Records session summary, duration, and project focus
  2. achievements: Documents key achievements from the session
  3. taskUpdates: Tracks updates to existing tasks
  4. newTasks: Records new tasks created during the session
  5. statusUpdates: Records changes to entity status values
  6. projectStatus: Updates overall project status, priority assignments, and sequential relationships
  7. assembly: Final assembly of all session data

buildcontext

Creates new entities, relations, or observations in the knowledge graph:

  • entities: Add new project-related entities (projects, tasks, milestones, status, priority, etc.)
  • relations: Create relationships between entities (including has_status, has_priority, precedes)
  • observations: Add observations to existing entities

deletecontext

Removes entities, relations, or observations from the knowledge graph:

  • entities: Remove project entities
  • relations: Remove relationships between entities (including status, priority, and sequential relations)
  • observations: Remove specific observations from entities

advancedcontext

Retrieves information from the knowledge graph:

  • graph: Get the entire knowledge graph
  • search: Search for nodes based on query criteria
  • nodes: Get specific nodes by name
  • related: Find related entities
  • status: Find entities with a specific status value (inactive, active, complete)
  • priority: Find entities with a specific priority value (high, low)
  • sequence: Identify sequential relationships for tasks

Domain-Specific Functions

The Project MCP Server includes specialized domain functions for project management:

  • getProjectOverview: Comprehensive view of a project including tasks, milestones, team members, issues, etc.
  • getTaskDependencies: Analyze task dependencies to identify blocked tasks and critical paths
  • getTeamMemberAssignments: View all assignments for a specific team member
  • getMilestoneProgress: Track progress towards project milestones
  • getProjectTimeline: Analyze project timeline and key dates
  • getResourceAllocation: Examine how resources are allocated across the project
  • getProjectRisks: Identify and assess project risks
  • findRelatedProjects: Discover connections between different projects
  • getDecisionLog: Track decision history and context
  • getProjectHealth: Assess overall project health with metrics and recommendations
  • getStatusOverview: View all entities with a specific status (inactive, active, complete)
  • getPriorityItems: Identify high-priority tasks and activities
  • getTaskSequence: Visualize the sequence of tasks based on precedes relations

Example Prompts

Starting a Session

Let's start a new project management session to review the Mobile App Development project.

Loading Project Context

Load the context for the Mobile App Development project so I can see its current status.

Recording Session Results

I've just finished a project review meeting for Mobile App Development. We completed the UI design milestone, identified 2 new risks related to the backend API, and assigned 3 new tasks to the development team. The UI tasks are now marked as complete, and we've set the API development tasks as high priority. The project is still on track but we need to monitor the API risks closely.

Managing Project Knowledge

Create a new task called "Implement User Authentication" that's part of the Mobile App Development project, assigned to Sarah, with high priority and due in two weeks. Set its status to active and make it precede the "User Profile" task.
Update the status of the "Database Migration" task to "completed" and add an observation that it was finished ahead of schedule.

Usage

This MCP server enables project managers to:

  • Maintain Context Continuity: Keep track of project details across multiple planning sessions
  • Onboard New Team Members: Quickly get new team members up to speed on project status
  • Record Session Results: Document the outcomes of meetings and work sessions
  • Track Dependencies: Identify and manage critical dependencies and bottlenecks
  • Monitor Risk: Keep track of project risks and implement mitigation strategies
  • Allocate Resources: Optimize resource allocation across projects and tasks
  • Make Informed Decisions: Base decisions on comprehensive project data
  • Track Progress: Monitor entity status throughout the project lifecycle
  • Prioritize Work: Identify and focus on high-priority tasks
  • Sequence Tasks: Plan and visualize the logical order of project tasks

Configuration

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Install from GitHub and run with npx

{
  "mcpServers": {
    "project": {
      "command": "npx",
      "args": [
        "-y",
        "github:tejpalvirk/project"
      ]
    }
  }
}

Install globally and run directly

First, install the package globally:

npm install -g github:tejpalvirk/project

Then configure Claude Desktop:

{
  "mcpServers": {
    "project": {
      "command": "contextmanager-project"
    }
  }
}

docker

{
  "mcpServers": {
    "project": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/project"
      ]
    }
  }
}

Building

From Source

# Clone the repository
git clone https://github.com/tejpalvirk/contextmanager.git
cd contextmanager

# Install dependencies
npm install

# Build the server
npm run build

# Run the server
cd project
node project_index.js

Docker:

docker build -t mcp/project -f project/Dockerfile .

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Environment Variables

The Project MCP Server supports the following environment variables to customize where data is stored:

  • MEMORY_FILE_PATH: Path where the knowledge graph data will be stored

    • Can be absolute or relative (relative paths use current working directory)
    • Default: ./project/memory.json
  • SESSIONS_FILE_PATH: Path where session data will be stored

    • Can be absolute or relative (relative paths use current working directory)
    • Default: ./project/sessions.json

Example usage:

# Store data in the current directory
MEMORY_FILE_PATH="./pm-memory.json" SESSIONS_FILE_PATH="./pm-sessions.json" npx github:tejpalvirk/contextmanager-project

# Store data in a specific location (absolute path)
MEMORY_FILE_PATH="/path/to/data/project-memory.json" npx github:tejpalvirk/contextmanager-project

# Store data in user's home directory
MEMORY_FILE_PATH="$HOME/contextmanager/project-memory.json" npx github:tejpalvirk/contextmanager-project

相关推荐

  • NiKole Maxwell
  • I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Callycode Limited
  • A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Beniyam Berhanu
  • Therapist adept at identifying core issues and offering practical advice with images.

  • INFOLAB OPERATIONS 2
  • A medical specialist offering assistance grounded in clinical guidelines. Disclaimer: This is intended for research and is NOT safe for clinical use!

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • Shea galley
  • A GPT designed to provide everyday financial advice and tools to Canadians, primarily inspired by the subreddit Personal Finance Canada.

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • huahuayu
  • 统一的API网关,用于将多个Etherscan样区块链Explorer API与对AI助手的模型上下文协议(MCP)支持。

  • deemkeen
  • 用电源组合控制您的MBOT2:MQTT+MCP+LLM

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • zhaoyunxing92
  • MCP(消息连接器协议)服务

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

    Reviews

    2 (1)
    Avatar
    user_9GoxGlG2
    2025-04-16

    I've been using the project application from tejpalvirk and it has truly streamlined my workflow. The intuitive design and robust functionality of the project make it an indispensable tool for managing tasks efficiently. Highly recommend checking it out here: https://github.com/tejpalvirk/project.