GTD Manager MCP Server

GTD Manager MCP Server

Implements the Getting Things Done methodology with custom meeting SOPs, enabling capture, processing, and context-based management of tasks and projects, integrated with AI assistants via MCP.

Category
Visit Server

README

GTD Manager MCP Server

AI-native Getting Things Done system with SOP-driven meeting management

Python 3.13+ MCP Protocol FastMCP License: CC BY-NC 4.0

Overview

GTD Manager is a Model Context Protocol (MCP) server that implements Getting Things Done methodology specifically designed for team leads and engineering managers dealing with extreme context switching. Unlike traditional GTD applications, it integrates seamlessly with AI assistants and allows complete workflow customization through markdown-based Standard Operating Procedures (SOPs).

Perfect for: Team leads managing 15-20 meetings per week who need a trusted system that adapts to their unique organizational processes.

Key Features

Core GTD Workflow

  • Universal Capture: Add items from any MCP-enabled AI assistant
  • Smart Clarification: Process inbox items into actionable projects and tasks
  • Context Organization: GTD contexts optimized for knowledge work
  • Comprehensive Reviews: Daily and weekly review workflows

Meeting Management

  • Custom SOPs: Create markdown templates for different meeting types
  • Action Extraction: Automatically identify and track action items from notes
  • Stakeholder Tracking: Maintain relationships and context over time
  • Pre-meeting Preparation: Automated checklists based on meeting type

Flexible Storage

  • Quip Integration: Full CRUD operations via Quip API
  • Local Markdown: File-based storage with frontmatter metadata
  • Hybrid Approach: Mix and match storage backends per workflow

AI Assistant Integration

  • MCP Protocol: Native integration with Claude Desktop, Cursor, and other MCP clients
  • Natural Language: Capture and process items using conversational commands
  • Zero Context Switching: Manage tasks without leaving your development environment

Installation

Prerequisites

  • Python 3.13+
  • PostgreSQL 17+ (with JSONB support)
  • MCP-compatible client (Claude Desktop, Cursor, etc.)

Quick Install (Recommended)

# Install via uvx (no local setup required)
uvx --from git+https://github.com/peerjakobsen/gtd-manager-mcp gtd-manager

Local Development Setup

# Clone the repository
git clone https://github.com/peerjakobsen/gtd-manager-mcp.git
cd gtd-manager-mcp

# Install with uv
uv sync

# Set up database
docker compose up -d postgres

# Initialize database
uv run alembic upgrade head

# Start the MCP server
uv run gtd-manager

Configuration

Environment Variables

Create a .env file in your project root:

# Database
DATABASE_URL=postgresql://user:password@localhost/gtd_manager

# Storage Backend (choose one or both)
QUIP_API_TOKEN=your_quip_api_token_here
LOCAL_STORAGE_PATH=~/.gtd-manager/data

# MCP Settings
MCP_TRANSPORT=stdio
LOG_LEVEL=INFO

MCP Client Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "gtd-manager": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/peerjakobsen/gtd-manager-mcp", "gtd-manager"],
      "env": {
        "DATABASE_URL": "postgresql://localhost/gtd_manager",
        "QUIP_API_TOKEN": "your_token_here"
      }
    }
  }
}

Usage

Basic Workflow

  1. Capture Everything

    @gtd capture "Follow up with Sarah about project timeline"
    @gtd quick-capture "Buy birthday gift for Mom"
    
  2. Process Your Inbox

    @gtd inbox-review
    @gtd clarify-item "Follow up with Sarah about project timeline"
    
  3. Organize by Context

    @gtd next-actions @computer
    @gtd next-actions @meeting
    
  4. Review and Plan

    @gtd daily-review
    @gtd weekly-review
    

Custom Meeting SOPs

Create a markdown file in your SOPs directory:

---
type: meeting
name: "Team Standup"
duration: 15
contexts: ["@team_meeting"]
stakeholders:
  required: ["team_lead", "developers"]
  optional: ["product_manager"]
---

# Daily Team Standup SOP

## Pre-Meeting Checklist
- [ ] Review yesterday's commitments
- [ ] Check for blockers in task board
- [ ] Prepare status updates

## Meeting Agenda
### 1. What did you accomplish yesterday? (5 min)
### 2. What will you work on today? (5 min)
### 3. Any blockers or help needed? (5 min)

## Post-Meeting Actions
- [ ] Update task board with new commitments
- [ ] Schedule follow-up sessions for blockers
- [ ] Send summary to absent team members

Available MCP Tools

  • capture_item - Add item to GTD inbox
  • clarify_item - Process inbox item into action/project
  • create_meeting - Schedule meeting with SOP
  • inbox_review - View and process inbox items
  • next_actions - List actions by context
  • weekly_review - Comprehensive GTD review
  • daily_review - Quick morning planning
  • create_project - Multi-step outcome planning

Development

Project Structure

gtd-manager-mcp/
├── src/gtd_manager/
│   ├── server.py          # FastMCP server setup
│   ├── domain/            # GTD domain models
│   ├── services/          # Business logic
│   ├── repositories/      # Data access
│   └── sops/             # SOP processing
├── tests/                # Test suite
├── migrations/           # Database migrations
├── examples/            # Example SOPs
└── docs/               # Documentation

Running Tests

# Run all tests
uv run pytest

# Run with coverage
uv run pytest --cov=src/gtd_manager

# Run specific test
uv run pytest tests/test_capture.py

Database Migrations

# Generate migration
uv run alembic revision --autogenerate -m "Description"

# Apply migrations
uv run alembic upgrade head

# Rollback
uv run alembic downgrade -1

Storage Backends

Quip Integration

When configured with a Quip API token, the system can:

  • Create and update documents for projects and meeting notes
  • Sync action items between GTD system and Quip documents
  • Maintain folder structure aligned with GTD contexts

Local Markdown

Files are stored in a structured directory:

~/.gtd-manager/
├── inbox/
├── projects/
├── contexts/
│   ├── computer/
│   ├── meeting/
│   └── phone/
├── meetings/
└── sops/

License

This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0).

You are free to:

  • Use this software for personal, educational, and non-commercial purposes
  • Study and learn from the source code
  • Modify and create derivative works for non-commercial use

You may not:

  • Use this software for commercial purposes without explicit permission
  • Sell or monetize this software or derivative works

For commercial licensing inquiries, please contact: support@gtdmanager.dev

See the LICENSE file for full details or visit: https://creativecommons.org/licenses/by-nc/4.0/

Support

For questions or issues, contact: peer.jakobsen@gmail.com


Built with FastMCP and the Model Context Protocol

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured