walgo-mcp

Agent bridge for Walrus sites

Hosted MCP that lets your agent (Claude Code, Cursor, Codex…) build, deploy, edit, and link walgo sites end-to-end. Your wallet stays in web.walgo.xyz; every chain transaction is signed there.

The endpoint

One Streamable HTTP URL — point any MCP-capable agent at this and you're 90% done.

https://mcp.walgo.xyz/mcp

One-liner install (Claude Code)

Drops the walgo skill at ~/.claude/skills/walgo and registers the MCP with Claude Code if it's installed.

curl -fsSL https://mcp.walgo.xyz/install.sh | bash

Per-client setup

Cursor

→ One-click install

Or manually — add to .cursor/mcp.json:

{ "mcpServers": { "walgo": { "url": "https://mcp.walgo.xyz/mcp" } } }

VS Code / GitHub Copilot

→ One-click install

Or manually — add to .vscode/mcp.json:

{ "servers": { "walgo": { "type": "http", "url": "https://mcp.walgo.xyz/mcp" } } }

Claude Code

claude mcp add --scope user --transport http walgo https://mcp.walgo.xyz/mcp

Claude Desktop

  1. Open Settings → Connectors (or Developer on older versions).
  2. Click Add custom connector / Add remote MCP server.
  3. Paste the URL:
https://mcp.walgo.xyz/mcp

Claude.ai — claude.ai/web

  1. Settings → Connectors → Custom Connectors → Add Custom Connector.
  2. Paste the URL above. Name it walgo.

Available on Pro / Team / Enterprise plans.

ChatGPT — chat.openai.com

  1. Settings → Connectors → Add Custom Connector.
  2. Paste the URL above. Name it walgo.

Available on Plus / Pro / Team / Enterprise.

Codex CLI

codex mcp add walgo --url https://mcp.walgo.xyz/mcp

Or add to ~/.codex/config.toml:

[mcp_servers.walgo] url = "https://mcp.walgo.xyz/mcp"

Gemini CLI

gemini mcp add -t http walgo https://mcp.walgo.xyz/mcp

Or add to ~/.gemini/settings.json:

{ "mcpServers": { "walgo": { "httpUrl": "https://mcp.walgo.xyz/mcp" } } }

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{ "mcpServers": { "walgo": { "serverUrl": "https://mcp.walgo.xyz/mcp" } } }

Other clients — Continue, Zed, anything that speaks Streamable HTTP MCP

Just point them at the endpoint URL. Field names vary slightly (url, httpUrl, serverUrl) — consult your client's docs.

Bootstrap prompt

Paste into any agent that already has the MCP configured. Points it at the playbook at /skill.md.

loading…

How pairing works

Call walgo_pair from your agent. The response includes a deepLink like https://web.walgo.xyz/pair/<code> and an 8-digit code. Open the link (or paste the code) in the wallet-connected browser tab. After that, every tool call routes through your paired browser, where your wallet signs each chain transaction.