Works with your agent. Yes, that one too.
Official Sprites plugins for every serious coding agent — plus SDKs and native integrations for everything else. Your agent builds, tests, and runs services on a real Linux box instead of your laptop.
Point any agent at
https://sprites.dev/mcp
OAuth in the browser. Nothing to install, nothing to run locally.
Which agent are you using?
Pick one and follow the steps below.
No integration matches that — but any MCP client can use the generic path above.
Set up Sprites for Claude Code
superfly/sprites-claude-plugin-
1
Add the marketplace and install the plugin
/plugin marketplace add superfly/sprites-claude-plugin -
2
Install it
/plugin install sprites@sprites -
3
Reload so Claude picks up the new tools
/reload-plugins -
4
Authorize the connector
/mcpPick the plugin-provided sprites server and complete browser OAuth for the Fly.io org you want. Restricted access with a name prefix such as mcp- is the safer default.
-
✓
Check the integration
/sprites:statusAn empty Sprite list means you're authenticated and working. /sprites:smoke runs the full list → create → exec → cleanup pass.
Prefer the bare MCP server, without the plugin's skills and hooks?
claude mcp add --transport http sprites https://sprites.dev/mcp
Set up Sprites for Codex
superfly/sprites-codex-plugin-
1
Install the Sprites plugin from the Codex plugin marketplace
Codex distributes this one through its own marketplace UI, so there's no install one-liner to copy.
-
2
Or add this repository as a marketplace from a local checkout
codex plugin marketplace add .Then restart Codex, open the plugin directory, choose the Sprites marketplace, and install Sprites.
-
3
Authenticate when Codex prompts you
The plugin talks to the hosted MCP server at https://sprites.dev/mcp.
-
✓
Ask Codex to prove it's connected
List my sprites.An empty list is a successful, authenticated response.
Set up Sprites for Cursor
superfly/sprites-cursor-plugin-
1
Install the Sprites plugin from the Cursor Marketplace
Cursor prompts you to authorize with Sprites over OAuth on first use.
-
2
Or wire up the MCP server by hand
~/.cursor/mcp.json{ "mcpServers": { "sprites": { "url": "https://sprites.dev/mcp" } } }Drop this in ~/.cursor/mcp.json for every project, or .cursor/mcp.json for just this one.
-
✓
Ask the agent to prove it's connected
List my sprites.
Set up Sprites for Antigravity
superfly/sprites-antigravity-plugin-
1
Install straight from the repository
agy plugin install https://github.com/superfly/sprites-antigravity-plugin -
2
Authenticate the sprites server
/mcpUse restricted access unless your workflow genuinely needs broader organization control.
-
✓
List what you've got
/sprites:listThe plugin also ships /sprites:new, /sprites:run, /sprites:checkpoint, /sprites:service, and /sprites:cleanup.
Set up Sprites for Grok Build
superfly/sprites-grok-plugin-
1
Install the plugin
grok plugin install superfly/sprites-grok-plugin --trust -
2
Enable it
grok plugin enable sprites -
3
Reload plugins, or restart Grok
/pluginsThen press r to reload.
-
4
Complete browser OAuth
The consent screen defaults to the restricted mcp- name prefix. Full access allows bare names but grants unrestricted access to every sprite in the org.
-
✓
Run the status check
/sprites-statusEmpty list means you're authenticated. /sprites-smoke does the full list → create → exec → confirm-before-destroy pass, and grok mcp doctor sprites diagnoses a bad install.
Set up Sprites for Cortex Code
superfly/sprites-cortex-plugin-
1
Install from GitHub
cortex plugin install superfly/sprites-cortex-plugin -
2
Enable the plugin
cortex plugin enable sprites -
3
Reload inside your session, or restart Cortex Code
/plugin reload -
✓
Ask Cortex to list your environments
List my sprites.
Set up Sprites for DeepSeek Harness
superfly/sprites-deepseek-plugin-
1
Add the plugin to your profile
npx @deepseek-ai/dsh plugin --profile web add github:superfly/sprites-deepseek-pluginSwap web for whichever profile you actually use.
-
2
Start that profile
npx @deepseek-ai/dsh --profile web -
3
Complete browser OAuth and pick your Fly.io organization
Restart Harness once if the first tool sync timed out while you were authorizing.
-
✓
Confirm the layer loaded
npx @deepseek-ai/dsh --profile web --dump-configOutput should include the dsh-sprites-plugin layer, sprites-mcp, and sprites-skill-filesystem.
Set up Sprites for Pi
superfly/pi-sprites-
1
Install from GitHub
pi install git:github.com/superfly/pi-spritesNot on npm yet. Node.js 24 or later is required by the Sprites SDK.
-
2
Export a Sprites token into Pi's environment
export SPRITES_TOKEN='...'This integration authenticates with a token, not browser OAuth.
-
✓
Ask Pi to list your environments
List my sprites.
Set up Sprites for VS Code
superfly/sprites-vscode-ext-
1
Install the Sprites extension
-
2
Set your API token
Sprites: Set API TokenRun it from the Command Palette and paste your Sprites.dev API token.
-
3
Open a Sprite
Sprites: Open SpriteIts filesystem appears in your workspace, editable in place.
-
✓
Open a shell on the box
Sprites: Open TerminalSprites: Create Sprite, Sprites: Delete Sprite, and a right-click Download to Local round out the command set.
Set up Sprites for Any MCP client
superfly/sprites-mcp-
1
Add a remote server entry
mcp.json{ "mcpServers": { "sprites": { "url": "https://sprites.dev/mcp" } } }Streamable HTTP over JSON-RPC 2.0, authenticated with OAuth 2.1 (sprites:read / sprites:write). Nothing runs locally.
-
2
If your client only speaks stdio, bridge it
mcp.json{ "mcpServers": { "sprites": { "command": "npx", "args": ["-y", "mcp-remote", "https://sprites.dev/mcp"] } } }mcp-remote handles the OAuth flow on the client's behalf.
-
3
Authorize in the browser on first use
-
✓
Ask your agent to prove it's connected
List my sprites.
Set up Sprites for Agent Plugins v1
superfly/sprites-agent-plugin-
1
Install the package with any Agent Plugins v1 client
The client discovers plugin.json, the children of skills/, and mcp.json at fixed locations. Agent Plugins standardizes package contents, not the install UI, so follow your client's own local, Git, workspace, or marketplace flow.
-
2
Complete browser OAuth on first MCP use
Restricted connector tokens may enforce a sprite-name prefix, creation cap, label, or expiry.
-
✓
Ask your agent to prove it's connected
List my sprites.
Claude Code, Grok, and Antigravity are not on the current compatible-client list — use their dedicated packages above, which also carry hooks the portable format has no equivalent for.
Which language are you building in?
The same primitives the plugins are built on — create, exec, services, checkpoints, network policy.
Build with the Python SDK
superfly/sprites-py-
1
Install from PyPI
pip install sprites-py -
2
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Build with the JavaScript SDK
superfly/sprites-js-
1
Install from npm
npm install @fly/sprites -
2
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Build with the Go SDK
superfly/sprites-go-
1
Add the module
go get github.com/superfly/sprites-go -
2
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Build with the Elixir SDK
superfly/sprites-ex-
1
Add the dependency
mix.exs{:sprites, "~> 0.2"} -
2
Fetch it
mix deps.get -
3
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Build with the Google ADK SDK
superfly/sprites-adk-
1
Install from PyPI
pip install sprites-adk -
2
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Build with the OpenRouter Agent SDK SDK
superfly/sprites-openrouter-sdk-
1
Build from the repository
Not on npm yet, and the API may change before the first stable release.
-
2
Point it at your Sprites account
export SPRITES_TOKEN='...'Create a token from the Sprites dashboard.
Built into the platforms you already use
Nothing to install — these ship with Sprites support out of the box.
Use Sprites with TanStack AI
tanstack.comSprites as a sandbox provider for TanStack AI agents.
Read the setup guideUse Sprites with Claude Managed Agents
docs.sprites.devAnthropic runs the agent loop; each session's tool calls execute inside a Sprite you control.
Read the setup guideStraight to the source
| Integration | Ships | Auth | Repository |
|---|---|---|---|
|
Claude Code
|
MCP
Skills
Hooks
|
Browser OAuth | superfly/sprites-claude-plugin |
|
Codex
|
MCP
Skills
|
Browser OAuth | superfly/sprites-codex-plugin |
|
Cursor
|
MCP
Skills
|
Browser OAuth | superfly/sprites-cursor-plugin |
|
Antigravity
|
MCP
Skills
Commands
Hooks
|
Browser OAuth | superfly/sprites-antigravity-plugin |
|
Grok Build
|
MCP
Skills
|
Browser OAuth | superfly/sprites-grok-plugin |
|
Cortex Code
|
MCP
Skills
Commands
Hooks
|
Browser OAuth | superfly/sprites-cortex-plugin |
|
DeepSeek Harness
|
MCP
Skills
|
Browser OAuth | superfly/sprites-deepseek-plugin |
|
Pi
|
SDK
Skills
|
API token | superfly/pi-sprites |
|
VS Code
|
Filesystem
|
API token | superfly/sprites-vscode-ext |
|
Any MCP client
|
MCP
|
Browser OAuth | superfly/sprites-mcp |
|
Agent Plugins v1
|
MCP
Skills
|
Browser OAuth | superfly/sprites-agent-plugin |
What your agent can do with it
Run the risky stuff somewhere else
Builds, migrations, dependency upgrades, and whole test suites run on the Sprite. Your laptop stays clean and stays yours.
Checkpoint before it breaks things
A checkpoint snapshots the whole filesystem in about a second. If the agent wrecks the environment, restore and carry on.
Keep services running between sessions
Dev servers, workers, and databases live on as Sprite services, with a URL you can open. Closing your editor doesn't kill them.
Confirm before anything destructive
The plugins prompt before destroying a Sprite, restoring a checkpoint, replacing a network policy, or widening exposure.