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/mcpOne-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 | bashPer-client setup
Cursor
Or manually — add to .cursor/mcp.json:
{
"mcpServers": {
"walgo": {
"url": "https://mcp.walgo.xyz/mcp"
}
}
}VS Code
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/mcpClaude Desktop
- Open Settings → Connectors (or Developer on older versions).
- Click Add custom connector / Add remote MCP server.
- Paste the URL:
https://mcp.walgo.xyz/mcpClaude.ai
- Settings → Connectors → Custom Connectors → Add Custom Connector.
- Paste the URL above. Name it
walgo.
Available on Pro / Team / Enterprise plans.
ChatGPT
- Settings → Connectors → Add Custom Connector.
- Paste the URL above. Name it
walgo.
Available on Plus / Pro / Team / Enterprise.
Codex CLI
codex mcp add walgo --url https://mcp.walgo.xyz/mcpOr 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/mcpOr 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
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.