streamable-httpApache-2.0updated 3mo ago
The official Model Context Protocol server for AgentDrive — a cross-agent artifact workspace with provenance and portable storage across Claude Code, Codex, Cursor, LangGraph, and any MCP-aware host.
O que dá para fazer com AgentDrive?
AgentDrive MCP Server
The official Model Context Protocol server for AgentDrive — a cross-agent artifact workspace with provenance and portable storage across Claude Code, Codex, Cursor, LangGraph, and any MCP-aware host.
Give your agents a shared, persistent workspace: files with versioning, semantic recall over everything prior agents produced, run logging, and cross-agent attribution — so the next session (on any tool) picks up where the last one left off.
- Website: https://agentdrive.sh
- Docs: https://agentdrive.sh/docs
- npm:
@adrive/mcp-server - Hosted endpoint:
https://mcp.agentdrive.sh/mcp
Get an API key (free)
Create one at https://app.agentdrive.sh — no credit card. The free tier (1 workspace, 1 GB storage, 10k embeddings) is free indefinitely.
Two ways to connect
1. Hosted (no install) — Streamable HTTP
Point any MCP client that supports remote servers at the hosted endpoint and pass your key as a bearer token:
URL: https://mcp.agentdrive.sh/mcp
Header: Authorization: Bearer agentdrive_live_xxx
Or install in one click via Smithery.
2. Local (stdio) — via npx
{
"mcpServers": {
"agentdrive": {
"command": "npx",
"args": ["-y", "@adrive/mcp-server"],
"env": {
"AGENTDRIVE_API_KEY": "agentdrive_live_xxx"
}
}
}
}
Add that block to your host's MCP config:
- Claude Desktop:
claude_desktop_config.json - Cursor:
~/.cursor/mcp.json - Claude Code:
claude mcp add agentdrive -- npx -y @adrive/mcp-server(setAGENTDRIVE_API_KEYin env) - Codex / Cline / Continue / Zed: the standard
mcpServersblock above
The fastest path is the AgentDrive installer, which auto-wires every detected host:
curl -fsSL agentdrive.sh/install | sh
Configuration
| Env var | Required | Default | Description |
|---|---|---|---|
AGENTDRIVE_API_KEY |
yes | — | Your AgentDrive API key (agentdrive_live_...). |
AGENTDRIVE_API_URL |
no | https://app.agentdrive.sh |
Override the API endpoint (self-hosted worker). |
AGENTDRIVE_AGENT_PLATFORM |
no | claude-code |
Which agent runtime is calling — drives cross-agent provenance. One of claude-code, codex, cursor, langgraph, crewai, autogen, cline, continue, zed, unknown. |
AGENTDRIVE_AGENT_ROLE |
no | — | Free-text role label (e.g. planner, reviewer) to distinguish multiple agents on the same platform. |
Tools
20 tools across files, memory, collaboration, org, and provenance.
| Tool | Category | Description |
|---|---|---|
drive_context |
memory | Auto-pull the most relevant prior artifacts for the task you're starting. |
drive_search |
memory | Semantic search across your org's artifacts. |
drive_recall |
memory | Recall persistent facts/preferences agents have written. |
drive_write |
files | Write a markdown file (auto-versioned). |
drive_read |
files | Read a file's content. |
drive_list |
files | List files in a workspace. |
drive_delete |
files | Delete a file. |
drive_versions |
files | View a file's version history. |
drive_share |
collaboration | Generate a (optionally email-gated) share link. |
drive_comment |
collaboration | Comment on a file. |
drive_feedback |
collaboration | Read human comments on a file. |
drive_activity |
provenance | Recent workspace activity (writes, comments, shares). |
drive_log_run |
provenance | Log an agent run (task, status, artifacts, identity). |
drive_invite |
org | Invite a human to your org by email. |
drive_roles |
org | Assign/list/remove per-workspace access by email. |
drive_org |
org | View org details: agents, members, plan, usage. |
drive_sandbox_clone |
sandbox (experimental) | Clone a git repo into a per-workspace Linux sandbox. |
drive_sandbox_exec |
sandbox (experimental) | Run a shell command in the sandbox. |
drive_sandbox_read |
sandbox (experimental) | Read a file from the sandbox filesystem. |
drive_sandbox_commit |
sandbox (experimental) | Stage + commit the sandbox worktree. |
The drive_sandbox_* tools require the Cloudflare Containers plan on the AgentDrive
worker and degrade cleanly to a "not configured" message otherwise.
Why AgentDrive
Agents lose context at every session boundary and every tool switch. AgentDrive is the shared substrate: one workspace, every agent, full provenance. Write once with Claude Code; recall it from Cursor; hand off to Codex — each call is attributed to the right principal and platform.
Develop
npm install
npm run build # tsc -> dist/
npm test # vitest
License
Apache-2.0. See LICENSE.
Instalação
Adicione AgentDrive ao seu cliente. Escolha o que você usa.
claude mcp add --transport http agentdrive https://mcp.agentdrive.sh/mcpcodex mcp add agentdrive --url https://mcp.agentdrive.sh/mcp{
"mcpServers": {
"agentdrive": {
"url": "https://mcp.agentdrive.sh/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"agentdrive": {
"type": "http",
"url": "https://mcp.agentdrive.sh/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"agentdrive": {
"url": "https://mcp.agentdrive.sh/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"agentdrive": {
"serverUrl": "https://mcp.agentdrive.sh/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
20 ferramentas
AgentDrive expõe 20 ferramentas a um agente conectado.
- drive_context
- memory
- drive_search
- memory
- drive_recall
- memory
- drive_write
- files
- drive_read
- files
- drive_list
- files
- drive_delete
- files
- drive_versions
- files
- drive_share
- collaboration
- drive_comment
- collaboration
- drive_feedback
- collaboration
- drive_activity
- provenance
- drive_log_run
- provenance
- drive_invite
- org
- drive_roles
- org
- drive_org
- org
- drive_sandbox_clone
- sandbox (experimental)
- drive_sandbox_exec
- sandbox (experimental)
- drive_sandbox_read
- sandbox (experimental)
- drive_sandbox_commit
- sandbox (experimental)
Pontuação
74 / 100
Boa
- Documentação25/25
- Manutenção16/25
- Confiança13/20
- Capacidade8/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 89 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 20 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.0Mais recente | 4 de jun. de 2026 |