MCP Handoff Server
Manages AI agent handoffs with structured documentation and seamless task transitions.
π€ MCP Handoff Server
A Model Context Protocol (MCP) server that helps AI agents hand off work to each other with structured documentation and progress tracking.
β¨ What it does
When AI agents need to pass work between each other, this server provides:
- π Structured handoff documents with templates
- π Progress tracking from start to completion
- π Automatic organization of active and archived handoffs
- π Easy searching and filtering of past work
π Quick Start
Just run it with npx - no installation needed:
# Start in MCP mode (for MCP clients)
npx -y mcp-handoff-server
# Start HTTP server (for testing/direct API access)
npx -y mcp-handoff-server --mode http
That's it! The server automatically creates all needed folders and templates.
π Basic Usage
For MCP Clients
Add to your MCP client configuration:
{
"mcpServers": {
"handoff": {
"command": "npx",
"args": [
"-y",
"mcp-handoff-server"
]
}
}
}
For HTTP Testing
# Start server
npx -y mcp-handoff-server --mode http
# Test it works
curl http://localhost:3001/health
π οΈ Available Tools
The server provides these MCP tools for AI agents:
graph LR
A[π create_handoff] --> B[π read_handoff]
B --> C[π update_handoff]
C --> D[β
complete_handoff]
D --> E[π¦ archive_handoff]
F[π list_handoffs] --> B
style A fill:#e1f5fe
style C fill:#f3e5f5
style D fill:#e8f5e8
style E fill:#fff3e0
style F fill:#fce4ec
Tool Functions:
create_handoff- Start a new handoff documentread_handoff- Read an existing handoffupdate_handoff- Add progress updatescomplete_handoff- Mark work as finishedarchive_handoff- Move completed work to archivelist_handoffs- Find and filter handoffs
π Example: Creating a Handoff
# Start the server
npx -y mcp-handoff-server --mode http
# Create a new handoff
curl -X POST http://localhost:3001/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "create_handoff",
"params": {
"type": "quick",
"initialData": {
"date": "2025-06-30",
"time": "14:30 UTC",
"currentState": {
"workingOn": "Building user login",
"status": "50% complete",
"nextStep": "Add password validation"
},
"environmentStatus": {
"details": {
"Server": "β
",
"Database": "β
"
}
}
}
}
}'
π§ Command Options
npx -y mcp-handoff-server [options]
Options:
--mode <mode> 'mcp' or 'http' (default: mcp)
--port <port> HTTP port (default: 3001)
--handoff-root <dir> Storage directory (default: ./handoff-system)
--help Show help
--version Show version
π How It Works
Simple Workflow
- Create a handoff when starting work
- Update progress as you work
- Complete when finished
- Archive for future reference
graph TD
A[π€ Agent Starts Work] --> B{New Work?}
B -->|Yes| C[π create_handoff]
B -->|No| D[π read_handoff]
C --> E[π Active Handoff]
D --> E
E --> F[π update_handoff]
F --> G{Work Done?}
G -->|No| F
G -->|Yes| H[β
complete_handoff]
H --> I[π¦ archive_handoff]
I --> J[ποΈ Archived]
style C fill:#e1f5fe
style F fill:#f3e5f5
style H fill:#e8f5e8
style I fill:#fff3e0
File Organization
The server automatically organizes everything in folders:
handoff-system/active/- Current workhandoff-system/archive/- Completed workhandoff-system/templates/- Document templates
π― Two Types of Handoffs
π Standard Handoff - For complex work with detailed context β‘ Quick Handoff - For simple updates and brief transitions
π·οΈ Status Indicators
- β Working - Everything good
- β οΈ Warning - Some issues but not blocked
- β Error - Problems that need fixing
π οΈ Development
Want to contribute or run locally?
# Clone and install
git clone <repository-url>
cd mcp-handoff-server
npm install
# Run in development
npm run dev
# Build for production
npm run build
π License
MIT License - feel free to use this in your projects!
π Need Help?
- Issues: GitHub Issues
- MCP Protocol: Model Context Protocol Docs
Built for seamless AI agent collaboration π€β¨
Related Servers
Paperless-MCP
An MCP server for interacting with a Paperless-NGX API server. This server provides tools for managing documents, tags, correspondents, and document types in your Paperless-NGX instance.
esa.io
An MCP server for the esa.io API, allowing you to search, read, create, update, and delete posts.
MCPComputerUse
A native C# MCP server for Windows automation using direct Windows API integration. It runs as a self-contained executable with no additional runtime required.
Learning-Assistant-MCP
An MCP server that helps developers understand what theyβre building by explaining concepts, reviewing approaches, and guiding them toward better solutions.
Pluga
Connect your AI Agents to automation workflows as if by magic
activity-mcp
An MCP server for interacting with various services like Slack, Harvest, and GitHub to manage activities and data.
Siri Shortcuts
List, open, and run shortcuts from the macOS Shortcuts app.
Knit MCP
Connect with 10,000+ tools across HRIS, ATS, CRM, Accounting, Calendar, Meeting, Ticketing, and more categories.
Goodday MCP Server
Integrate with the Goodday project management platform to manage projects, tasks, and users via its API.
Obsidian
Interact with your Obsidian notes and vaults using the Local REST API plugin.