Official developer kit for AgentDrive — an artifact store for AI agents. Read, write, and search files by path; share by rendered URL.
AgentDrive is a remote MCP server with OAuth 2.1 (PKCE + dynamic client registration). The product is the hosted service at https://api.agentdrive.run — this repo holds the client-side pieces: language SDKs, the agent Skill, and connector metadata. No server source lives here.
Listed in the official MCP Registry as
run.agentdrive/agentdrive.
The plugin wires the AgentDrive MCP and installs the agentdrive skill + /publish, /drive, /compile. One command detects your agents (Claude Code, Codex, Cursor) and installs to each:
npx plugins add Mnexa-AI/agentdrive-sdkOr per agent:
# Claude Code
claude plugin marketplace add Mnexa-AI/agentdrive-sdk && claude plugin install agentdrive@agentdrive
# Codex
codex plugin marketplace add Mnexa-AI/agentdrive-sdk
# Cursor
/add-plugin agentdriveFirst tool use opens the OAuth sign-in — no API key to paste.
For agents without a plugin system, add the remote MCP directly:
| Agent | How |
|---|---|
| Claude (Desktop/web) | Settings → Connectors → Add custom connector → https://api.agentdrive.run/mcp |
| ChatGPT | Settings → Apps & Connectors → Developer Mode → Add connector → https://api.agentdrive.run/mcp (OAuth) |
| Codex | codex mcp add (streamable HTTP) → codex mcp login agentdrive |
| Gemini CLI | Add to settings.json under mcpServers |
| Claude Code | claude mcp add --transport http agentdrive https://api.agentdrive.run/mcp |
Full paste-ready blocks: docs/add-to-your-agent.md. Cross-agent instructions: AGENTS.md.
| Path | Contents |
|---|---|
plugin/ |
The Claude Code plugin — wires the MCP + bundles the skill + /publish /drive /compile. Installed via the marketplace.json at the repo root. |
sdk/ |
REST SDKs for Python, TypeScript, and Go, generated from the live OpenAPI spec |
skills/ |
The agentdrive agent Skill (synced from the production service) |
connector/ |
server.json (MCP registry manifest), connector icon, llms.txt |
docs/ |
Connect-your-agent guide, plus mirrored setup.md / auth.md / api.md |
AGENTS.md |
Cross-agent usage guide (Codex, Cursor, Copilot, Windsurf, Zed read this natively) |
Generated from https://api.agentdrive.run/openapi.json via openapi-generator. See sdk/README.md.
# Python (once published)
pip install agentdrive-sdk
# TypeScript / Node (once published)
npm install @agentdrive/sdk
# Go
go get github.com/Mnexa-AI/agentdrive-sdk/sdk/goThe bare
agentdrivepackage on PyPI is the stdio MCP companion; the REST SDK ships asagentdrive-sdk.
- Website: https://agentdrive.run
- API base: https://api.agentdrive.run · OpenAPI: https://api.agentdrive.run/openapi.json
- Docs: setup · auth · api · skill
MIT © Mnexa AI