Install
$ agentstack add mcp-himanshu007-creator-passit ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
passit
Pass conversations between AI agents — grab, drop, and continue seamlessly.
passit is a local-first MCP server that lets you move conversations between any AI coding agent. Stuck on credits in Claude Code? passit_drop it into OpenCode. Need to pick up where you left off in Gemini? passit_push it over. No more lost context.
cargo install passit
Why passit?
AI coding agents are walled gardens. Claude Code can't see what OpenCode discussed. Cursor can't pick up from Gemini. If one agent hits its limit, there's no way to continue elsewhere without copy-pasting.
passit breaks those walls with a shared, persistent, local-first session bus.
- grab ↔ drop — grab a conversation from any agent, drop it into another. Continue exactly where you left off.
- push — send conversations to other tools and agents
- scan — automatically discover and import past conversations from Claude Code, Gemini CLI, OpenCode
- search — find anything you've ever discussed, across all agents
- fork — branch a conversation to try different approaches
- trim — fit conversations within token limits
- convert — format conversations for any provider (OpenAI, Anthropic, JSON, transcript)
Quick Start
1. Install
Via crates.io:
cargo install passit
Via Smithery (one-command into Claude Desktop, Cursor, etc.):
npx smithery mcp add himanshu007-creator/passit --client claude
Docker:
docker run --rm ghcr.io/himanshu007-creator/passit:latest
2. Configure an agent
Each agent needs an MCP server entry pointing to passit.
OpenCode — ~/.config/opencode/opencode.json:
{
"mcpServers": {
"passit": {
"command": "passit",
"env": {
"PASSIT_AGENT_ID": "opencode"
}
}
}
}
Claude Code — ~/.claude/claude.json:
{
"mcpServers": {
"passit": {
"command": "passit",
"env": {
"PASSIT_AGENT_ID": "claude-code"
}
}
}
}
Cursor — ~/.cursor/mcp.json:
{
"mcpServers": {
"passit": {
"command": "passit",
"env": {
"PASSIT_AGENT_ID": "cursor"
}
}
}
}
3. Use passit
Just talk naturally. The agent picks up what you mean:
> "grab my last claude conversation and continue it here"
> "what conversations do I have saved?"
> "find where we talked about the parser"
> "resume where I left off on opencode"
> "push this session to gemini"
MCP Tools
passit exposes these MCP tools to your AI agent:
| Tool | What it does | Say this | |------|-------------|---------| | save | Auto-save every turn (called automatically) | — | | drop | Load a conversation into current context | "resume where I left off", "continue that convo" | | list | List all saved conversations | "show my conversations", "what do I have saved" | | scan | Discover & import from agent histories | "find my old conversations", "import from claude" | | grab | Import a conversation from outside | "grab this conversation", "import my old chat" | | push | Export for another agent/tool | "send this to gemini", "export for chatgpt" | | search | Full-text search across all conversations | "find where we talked about X" | | fork | Branch from a specific turn | "fork from turn 5", "try a different path" | | summary | Show passit state, per-source stats, transfers, and compression savings | "what's in passit", "show status", "summary" | | trim | Fit conversation within token limits | "trim this for context" | | convert | Convert between formats | "convert to openai format" |
CLI
# Run as MCP server (stdio) — default
passit
# List recent sessions
passit list --limit 10
# Scan agent histories
passit scan
# Export a session
passit export
Configuration
| Variable | Default | Description | |----------|---------|-------------| | PASSIT_DB_PATH | ~/.passit/sessions.db | SQLite database path | | PASSIT_AGENT_ID | opencode | Agent identifier | | PASSIT_LOG_LEVEL | info | Log level |
How passit Works
┌─────────────┐ ┌──────────────┐ ┌─────────────┐
│ Claude Code │ │ OpenCode │ │ Gemini │
│ (source) │ │ (current) │ │ (target) │
└──────┬──────┘ └──────┬───────┘ └──────┬──────┘
│ │ │
└───────────────────┼────────────────────┘
│
┌──────▼──────┐
│ passit │
│ MCP Server │ ◄── SQLite
│ │ ~/.passit/sessions.db
└─────────────┘
▲
┌──────┴──────┐
│ Scanner │ ◄── ~/.claude/projects/
│ (on boot) │ ~/.gemini/tmp/
└─────────────┘ ~/.opencode/data/
Development
git clone https://github.com/himanshu007-creator/passit.git
cd passit
cargo test
cargo build --release
License
MIT — see [LICENSE](LICENSE).
Built with Rust and the MCP protocol by himanshu007-creator.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: himanshu007-creator
- Source: himanshu007-creator/passit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.