Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for conversation handoff between AI chats/projects conversation-handoff-mcp $1 $1 $1 $1 <a href="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp/badge" /> </a> MCP server for transferring conversation context between AI chats or different projects within the same AI. $1 Features - **Server Restart (v0.9.0+)**: Restart the shared HTTP server from Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
conversation-handoff-mcp is best for mcp, claude, handoff workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for conversation handoff between AI chats/projects conversation-handoff-mcp $1 $1 $1 $1 <a href="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp/badge" /> </a> MCP server for transferring conversation context between AI chats or different projects within the same AI. $1 Features - **Server Restart (v0.9.0+)**: Restart the shared HTTP server from
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Trust Delta
Artifacts
0
Benchmarks
0
Last release
0.9.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/trust-delta/conversation-handoff-mcp.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Trust Delta
Protocol compatibility
MCP
Adoption signal
3 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
json
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"]
}
}
}bash
npm install -g conversation-handoff-mcp
bash
git clone https://github.com/trust-delta/conversation-handoff-mcp.git cd conversation-handoff-mcp npm install npm run build
json
{
"mcpServers": {
"conversation-handoff": {
"command": "node",
"args": ["/path/to/conversation-handoff-mcp/dist/index.js"]
}
}
}text
// With explicit key and title handoff_save( key: "project-design", title: "Project Design Discussion", summary: "Decided on MCP server design approach", conversation: "## User\nQuestion...\n\n## Assistant\nAnswer..." ) // Auto-generated key and title (v0.4.0+) handoff_save( summary: "Decided on MCP server design approach", conversation: "## User\nQuestion...\n\n## Assistant\nAnswer..." ) // → key: "handoff-20241208-143052-abc123" (timestamp + random) // → title: "Decided on MCP server design approach" (from summary)
text
handoff_list()
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for conversation handoff between AI chats/projects conversation-handoff-mcp $1 $1 $1 $1 <a href="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@trust-delta/conversation-handoff-mcp/badge" /> </a> MCP server for transferring conversation context between AI chats or different projects within the same AI. $1 Features - **Server Restart (v0.9.0+)**: Restart the shared HTTP server from
MCP server for transferring conversation context between AI chats or different projects within the same AI.
--audit flag)handoff_saveWorks with Claude Desktop, Claude Code, Codex CLI, Gemini CLI, and other MCP clients.
| Client | Config File |
|--------|-------------|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Claude Code | ~/.claude/settings.json |
| Codex CLI | ~/.codex/config.toml |
| Gemini CLI | ~/.gemini/settings.json |
| Cursor | ~/.cursor/mcp.json |
| ChatGPT Desktop | In-app settings (Developer Mode) |
No pre-installation required - runs via npx.
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"]
}
}
}
For global installation:
npm install -g conversation-handoff-mcp
git clone https://github.com/trust-delta/conversation-handoff-mcp.git
cd conversation-handoff-mcp
npm install
npm run build
MCP configuration:
{
"mcpServers": {
"conversation-handoff": {
"command": "node",
"args": ["/path/to/conversation-handoff-mcp/dist/index.js"]
}
}
}
Note: Codex CLI uses TOML format. See Codex MCP documentation for details.
Save conversation context. Key and title are auto-generated if omitted (v0.4.0+). The conversation field stores the complete verbatim content — AI is instructed not to summarize or abbreviate messages (v0.6.1+).
// With explicit key and title
handoff_save(
key: "project-design",
title: "Project Design Discussion",
summary: "Decided on MCP server design approach",
conversation: "## User\nQuestion...\n\n## Assistant\nAnswer..."
)
// Auto-generated key and title (v0.4.0+)
handoff_save(
summary: "Decided on MCP server design approach",
conversation: "## User\nQuestion...\n\n## Assistant\nAnswer..."
)
// → key: "handoff-20241208-143052-abc123" (timestamp + random)
// → title: "Decided on MCP server design approach" (from summary)
Get list of saved handoffs (summaries only).
handoff_list()
Load full content of a specific handoff.
handoff_load(key: "project-design")
handoff_load(key: "project-design", max_messages: 10) // Last 10 messages only
Delete handoffs.
handoff_clear(key: "project-design") // Specific key
handoff_clear() // Clear all
Merge multiple related handoffs into one. Useful for combining discussions from separate sessions.
// Merge two handoffs (chronological order by default)
handoff_merge(keys: ["session-1", "session-2"])
// With custom key and delete sources
handoff_merge(
keys: ["design-v1", "design-v2", "design-v3"],
new_key: "design-final",
new_title: "Final Design Document",
delete_sources: true,
strategy: "sequential"
)
| Parameter | Required | Default | Description |
|-----------|----------|---------|-------------|
| keys | Yes | - | Array of handoff keys to merge (min 2) |
| new_key | No | auto | Key for merged handoff |
| new_title | No | auto | Title for merged handoff |
| new_summary | No | auto | Summary for merged handoff |
| delete_sources | No | false | Delete source handoffs after merge |
| strategy | No | "chronological" | "chronological" (by creation time) or "sequential" (array order) |
Check storage usage and limits.
handoff_stats()
For MCP Apps-compatible clients, handoff_list automatically opens an interactive UI. Non-compatible clients receive the standard JSON response.
Note: According to the MCP Apps specification,
sendMessageshould add messages directly to the conversation and trigger a model response. However, Claude Desktop's current implementation inserts the message into the chat input field instead, requiring the user to press Enter. When you click "Load", the handoff content will be inserted into the input field - press Enter to send it to Claude. This behavior is expected to improve in future Claude Desktop updates.
Starting with v0.4.0, the server automatically starts in the background when an MCP client connects. No manual setup required!
[User launches Claude Desktop]
→ MCP client starts
→ Scans ports 1099-1200 in parallel for existing server
→ If no server found: auto-starts one in background
→ Connects to server
→ (User notices nothing - it just works!)
[User launches Claude Code later]
→ MCP client starts
→ Scans ports 1099-1200 in parallel
→ Finds existing server
→ Connects to same server
→ Handoffs are shared!
| Mode | When | Behavior |
|------|------|----------|
| Auto-Connect (default) | No HANDOFF_SERVER set | Discovers or auto-starts server |
| Explicit Server | HANDOFF_SERVER=http://... | Connects to specified URL |
| Standalone | HANDOFF_SERVER=none | No server, in-memory only |
Handoff data is stored in memory only:
When the shared server goes down during operation:
[Server stops unexpectedly]
→ User calls handoff_save()
→ Request fails (connection refused)
→ Auto-reconnection kicks in:
→ Rescan ports 1099-1200 for existing server
→ If found: connect to it
→ If not found: start new server in background
→ Retry the original request
→ User sees success (transparent recovery!)
HANDOFF_RETRY_COUNT (default: 30)The server automatically shuts down after a period of inactivity:
HANDOFF_SERVER_TTL environment variable0 to disable auto-shutdownStandard configuration (recommended) - Just works with auto-connect:
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"]
}
}
}
Specify custom server:
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"],
"env": {
"HANDOFF_SERVER": "http://localhost:3000"
}
}
}
}
Force standalone mode (no server):
For Claude Desktop only. Claude Desktop cannot transfer conversations between projects by default, but since it shares memory space as a single app, this MCP server enables handoffs between projects. Claude Code and CLI tools run as separate processes per tab/session, so handoffs don't work in this mode.
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"],
"env": {
"HANDOFF_SERVER": "none"
}
}
}
}
If you prefer manual control:
# Default port (1099)
npx conversation-handoff-mcp --serve
# Custom port
npx conversation-handoff-mcp --serve --port 3000
| Method | Path | Description | |--------|------|-------------| | POST | /handoff | Save a handoff | | POST | /handoff/merge | Merge multiple handoffs | | GET | /handoff | List all handoffs | | GET | /handoff/:key | Load a specific handoff | | DELETE | /handoff/:key | Delete a specific handoff | | DELETE | /handoff | Delete all handoffs | | GET | /stats | Get storage statistics | | GET | / | Health check |
Scenario: Design discussion in Claude Desktop → Implementation in Claude Code
In Claude Desktop - Have a design discussion:
User: Let's design an authentication system for my app.
Assistant: I recommend using JWT with refresh tokens...
[detailed discussion continues]
Save the conversation - When ready to hand off:
User: Save this conversation for implementation in Claude Code.
Assistant: (calls handoff_save)
✅ Handoff saved with key: "auth-design-20241208"
In Claude Code - Load and continue:
User: Load the auth design discussion.
Assistant: (calls handoff_load)
# Handoff: Authentication System Design
[Full conversation context loaded]
I see we discussed JWT with refresh tokens. Let me implement that...
Key Points:
Note: The server automatically starts in the background when the first MCP client connects. No manual startup required.
Customize behavior via environment variables.
| Variable | Default | Description |
|----------|---------|-------------|
| HANDOFF_SERVER | (auto) | none for standalone, or explicit server URL |
| HANDOFF_PORT_RANGE | 1099-1200 | Port range for auto-discovery |
| HANDOFF_RETRY_COUNT | 30 | Auto-reconnect retry count |
| HANDOFF_RETRY_INTERVAL | 10000 | Auto-reconnect interval (ms) |
| HANDOFF_SERVER_TTL | 86400000 (24h) | Server auto-shutdown after inactivity (0 = disabled) |
| HANDOFF_AUDIT | (disabled) | true or 1 to enable audit logging (same as --audit) |
| Variable | Default | Description |
|----------|---------|-------------|
| HANDOFF_MAX_COUNT | 100 | Maximum number of handoffs |
| HANDOFF_MAX_CONVERSATION_BYTES | 1048576 (1MB) | Maximum conversation size |
| HANDOFF_MAX_SUMMARY_BYTES | 10240 (10KB) | Maximum summary size |
| HANDOFF_MAX_TITLE_LENGTH | 200 | Maximum title length |
| HANDOFF_MAX_KEY_LENGTH | 100 | Maximum key length |
{
"mcpServers": {
"conversation-handoff": {
"command": "npx",
"args": ["conversation-handoff-mcp@latest"],
"env": {
"HANDOFF_MAX_COUNT": "50",
"HANDOFF_MAX_CONVERSATION_BYTES": "524288"
}
}
}
}
## User
User's message
## Assistant
AI's response
The handoff_load output includes security markers to protect against prompt injection attacks:
This prevents malicious content stored in handoffs from being interpreted as AI instructions.
MIT
trust-delta
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T04:40:39.508Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "handoff",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "conversation",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "context",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:claude|supported|profile capability:handoff|supported|profile capability:conversation|supported|profile capability:ai|supported|profile capability:context|supported|profile capability:model-context-protocol|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Trust Delta",
"href": "https://github.com/trust-delta/conversation-handoff-mcp#readme",
"sourceUrl": "https://github.com/trust-delta/conversation-handoff-mcp#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:00:20.121Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:00:20.121Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "3 GitHub stars",
"href": "https://github.com/trust-delta/conversation-handoff-mcp",
"sourceUrl": "https://github.com/trust-delta/conversation-handoff-mcp",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:00:20.121Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-trust-delta-conversation-handoff-mcp/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to conversation-handoff-mcp and adjacent AI workflows.