MCP Setup
CodeTeleport ships an MCP server (codeteleport-mcp) that lets your AI coding agent push, pull, and manage sessions without leaving the conversation. This page covers how to wire it up.
CodeTeleport supports three AI coding agents — Claude Code (id claude-code, default), Codex (OpenAI, id codex), and Antigravity (Google, id antigravity). The MCP server is the same for all three; only the registration command differs. Each agent registers the same seven tools.
Register the MCP server
Section titled “Register the MCP server”Pick your agent and run its mcp add command. Claude Code is shown first as the default, but Codex and Antigravity are fully supported equals — each registers the same seven tools.
Run one command in your terminal:
claude mcp add codeteleport -- codeteleport-mcpClaude Code will register the server and make all seven tools available in every conversation.
Run one command in your terminal:
codex mcp add codeteleport -- codeteleport-mcpCodex will register the server and make all seven tools available in every conversation.
Run one command in your terminal:
agy mcp add codeteleport -- codeteleport-mcpAntigravity will register the server and make all seven tools available in every conversation.
The JSON edit below is Claude-Code-specific. Codex and Antigravity register via their own codex mcp add / agy mcp add commands above, not via this file.
Open your Claude Code settings file (~/.claude/settings.json) and add the server entry:
{ "mcpServers": { "codeteleport": { "command": "codeteleport-mcp", "args": [] } }}Save the file and restart Claude Code.
Verify
Section titled “Verify”Start a conversation in your agent — Claude Code, Codex, or Antigravity — and ask:
show me my CodeTeleport statusThis calls the teleport_status tool, which works identically from any agent’s conversation. You should see output like:
CodeTeleport Status user : alice@example.com device : Alices-Laptop.local api : https://api.codeteleport.com plan : free sessions : 3 / 25 devices : 2 / 3If you get an authentication error, make sure you have logged in first.
Other Agents
Section titled “Other Agents”Other MCP-Compatible Agents
Section titled “Other MCP-Compatible Agents”CodeTeleport officially supports Claude Code, Codex, and Antigravity. Its MCP server also follows the Model Context Protocol standard, so any other MCP-compatible client can point at the codeteleport-mcp executable — though only the three agents above are officially supported.
Running into issues? Open an issue on GitHub and let us know which agent you are using.
Next step
Section titled “Next step”See the full list of MCP tools that CodeTeleport exposes.