Execution System MCP Server

Execution System MCP Server

Enables AI-native task and project management through natural language conversation with Claude, eliminating app-switching by letting you add actions, manage projects across multiple areas of focus, and maintain a GTD-style execution system directly in chat.

Category
访问服务器

README

Execution System MCP Server

An AI-native execution system powered by Claude and the Model Context Protocol.

Why This Exists

Traditional productivity tools force you to context-switch between thinking and doing. You stop your work, open an app, navigate through menus, fill out forms, and then return to what you were doing. This friction means you often don't capture things at all, or you create incomplete entries that need cleanup later.

This MCP server eliminates that friction. You stay in conversation with Claude while working, and your execution system updates naturally:

  • Working on code? "Add action: refactor the auth module @macbook +api-redesign due:2025-11-15"
  • In a meeting? "Add to waiting: Sarah's feedback on the proposal"
  • Reviewing your week? "List all actions for the ml-refresh project"
  • Planning? "Show me all Health projects that haven't been reviewed in 7 days"

No app switching. No form filling. Just natural language that keeps you in flow while maintaining a rigorous execution system.

Features

The server implements the horizons of focus model through the Model Context Protocol:

0k - Next Actions (Ground Level)

  • Add actions to context files (@macbook, @phone, @errands) with automatic project validation
  • Add to special lists: @waiting (for others), @deferred (specific future date), @incubating (someday/maybe)
  • Complete actions by line number with automatic archival to completed.md
  • List actions with flexible filtering by context, project, and state
  • Search actions by text with state and context filters
  • Full support for todo.txt format with creation dates, contexts, projects, due/defer dates

10k - Projects (Current Initiatives)

  • Create projects with YAML frontmatter and three templates (standard, coordination, habit)
  • List projects with flexible filtering and grouping by area, due date, or flat
  • Search projects by text in title or content
  • Complete projects with validation that all actions are done
  • Manage lifecycle: activate from incubator, move back to incubator, descope
  • Update metadata: due dates, areas, types, review dates (bulk updates supported)
  • Audit tools: validate data quality, find orphan projects/actions, identify items needing review

20k - Areas of Focus (Responsibilities)

  • List areas of focus from configuration
  • Automatic area validation across all projects and goals

30k - Goals (1-2 Year Objectives)

  • List goals from active and incubator folders
  • Automatic filtering by type: goal in YAML frontmatter
  • Support for nested goal directories with supporting materials

All tools include comprehensive validation, error handling, and JSON output for programmatic access.

Installation

# Clone the repository
git clone https://github.com/elinsky/execution-system-mcp.git
cd execution-system-mcp

# Install dependencies
pip install -e ".[dev]"

Configuration

Create a configuration file at ~/.config/execution-system-mcp/config.json:

{
  "execution_system_repo_path": "/absolute/path/to/your/execution-system-repo",
  "areas": [
    {"name": "Health", "kebab": "health"},
    {"name": "Learning", "kebab": "learning"},
    {"name": "Career", "kebab": "career"},
    {"name": "Mission", "kebab": "mission"},
    {"name": "Personal Growth Systems", "kebab": "personal-growth-systems"},
    {"name": "Social Relationships", "kebab": "social-relationships"},
    {"name": "Romance", "kebab": "romance"},
    {"name": "Emotional Health", "kebab": "emotional-health"},
    {"name": "Finance", "kebab": "finance"},
    {"name": "Character and Values", "kebab": "character-and-values"},
    {"name": "Hobbies and Recreation", "kebab": "hobbies-and-recreation"}
  ]
}

Development

# Run tests
pytest

# Run tests with coverage
pytest --cov=src --cov-report=html

# Run specific test file
pytest tests/unit/test_config.py

Usage

The MCP server integrates with Claude Desktop. Once configured, you can manage your execution system by asking Claude:

0k - Action Examples

  • "Add action 'Buy groceries' to @errands context for project meal-planning"
  • "Add 'Wait for package delivery' to @waiting with defer date 2025-11-15"
  • "Complete the action on line 7 of contexts/@macbook.md"
  • "List all actions for the ml-refresh project"

10k - Project Examples

  • "Create a new project titled 'Learn Python' in the Learning area as a standard project in active folder"
  • "List all active projects in the Health area"
  • "Complete the project 'Learn Python'"
  • "Search for projects about machine learning"

20k - Area Examples

  • "List all my areas of focus"

30k - Goal Examples

  • "List all active goals"
  • "Show me goals in the incubator"

Claude will use the appropriate MCP tools to interact with your execution system.

Available Tools

0k - Action Tools

  • add_action - Add next action to context file with project validation
  • add_to_waiting - Add item to @waiting list
  • add_to_deferred - Add item to @deferred list
  • add_to_incubating - Add item to @incubating list
  • complete_action - Complete action by line number
  • list_actions - List actions with flexible filtering and grouping
  • search_actions - Search actions by text with filters

10k - Project Tools

  • create_project - Create new project with YAML frontmatter and template
  • list_active_projects - List all active projects grouped by area
  • list_projects - List projects with flexible filtering (folder, area, due date)
  • complete_project - Complete project with validation for incomplete actions
  • activate_project - Move project from incubator to active
  • move_project_to_incubator - Move project from active to incubator
  • descope_project - Move project to descoped folder
  • update_project_due_date - Add or remove project due date
  • update_project_area - Change project's area of focus
  • update_project_type - Change project type (standard/coordination/habit)
  • update_review_dates - Bulk update last_reviewed dates
  • search_projects - Search projects by text with filters

20k - Area Tools

  • list_areas - List all configured areas of focus

30k - Goal Tools

  • list_goals - List goals from active and incubator folders

Audit & Health Check Tools

  • audit_projects - Validate project data quality
  • audit_orphan_projects - Find projects without actions
  • audit_orphan_actions - Find actions with invalid projects/contexts
  • audit_action_files - Validate action file data quality
  • list_projects_needing_review - Find projects not reviewed recently
  • list_actions_needing_review - Find action files not reviewed recently

Project Structure

execution-system-mcp/
├── src/
│   └── gtd_mcp/
│       ├── __init__.py
│       ├── server.py          # MCP server with all tool handlers
│       ├── config.py          # Configuration manager
│       ├── creator.py         # Project creation
│       ├── lister.py          # Project listing
│       ├── completer.py       # Project completion
│       ├── validator.py       # Validation logic
│       ├── templates.py       # Project templates
│       ├── project_manager.py # Project lifecycle management
│       ├── action_manager.py  # Action creation and completion
│       ├── action_lister.py   # Action listing
│       ├── goal_lister.py     # Goal listing
│       ├── area_lister.py     # Area listing
│       ├── searcher.py        # Search functionality
│       └── auditor.py         # Data quality audits
├── tests/
│   └── unit/                  # 185 comprehensive unit tests
├── pyproject.toml
└── README.md

License

MIT

推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。

官方
精选