Developer Tools
anygas.xyz
Provides gasless cross-chain token transfers and yield account management across multiple blockchains.
ENDPOINT 1
https://api.anygas.xyz/mcp
MCP server metadata
- Name
- robyn
- Version
- 1.0.3
Known tools 23
robyn_meshList the Robyn gasless chains and the cross-chain route graph (22 EVM nodes + Stellar), plus the relayer/Permit2 addresses.
Inferred read-onlyrobyn_vip_statusCheck whether an address holds a recognised member NFT and what it gets.
Inferred read-onlyrobyn_route_statusStatus of an in-flight route by id (BRIDGING → DONE), with the destination tx once delivered.
Inferred read-onlyrobyn_cross_chainPlan a gasless cross-chain move and get the exact payload to sign.
Inferred read-onlyrobyn_prepareTurn a plain-language or structured intent into a concrete plan plus the EXACT payload to sign.
Inferred read-onlyrobyn_sandbox_doRuns the identical path end to end against the sandbox: no key, no funds, no broadcast.
Inferred read-onlyrobyn_netting_infoExplains the opt-in netting ledger: transfers between two ENROLLED accounts settle as a book entry — no chain, no gas, no fee, instant, at ANY size including amounts below every per-chain cost floor.
Inferred read-onlyrobyn_netting_accountWhether an address is enrolled (and therefore custodied), its internal balance, recent history, and `nextNonce` — which you MUST use when signing the next transfer or withdrawal.
Potential side effectsrobyn_netting_statementInternal transfers produce NO transaction hash because no transaction occurs — this append-only journal is their only record.
Inferred read-onlyrobyn_netting_reservesPublishes what Robyn OWES across all netting accounts against the real relayer float backing it, per chain.
Inferred read-onlyrobyn_netting_enroll_payloadReturns the EXACT message the account must sign with its OWN key to open a custodial balance.
Potential side effectsrobyn_netting_transfer_payloadReturns the exact string to sign, with the correct next nonce, for a free instant transfer between two ENROLLED accounts.
Potential side effectsrobyn_errorsThe full error taxonomy: every errorCode, whether it is retryable, and the suggested recovery action.
Inferred read-onlyrobyn_7702_delegateThe canonical Robyn EIP-7702 batch-executor delegate: its address on each of the 22 EVM chains, the ABI, and the EIP-712 scheme for executeSigned.
Inferred read-onlyrobyn_7702_checkCheck that a signed EIP-7702 authorization tuple recovers the expected account, and whether its nonce matches the live account nonce.
Inferred read-onlyrobyn_sponsor_7702Price or request an EIP-7702 sponsored transaction: Robyn submits your signed authorization as a type-4 transaction and PAYS THE GAS, so your account needs no native token.
Inferred read-onlyrobyn_yield_accountAn agent's own Aave v3 / Moonwell position (aUSDC/mUSDC) per chain + the capped allowance it granted the relayer + live APY (best-yield auto-selected).
Inferred read-onlyrobyn_yield_quoteRead-only JIT quote: how a spend would be fulfilled from an agent's Aave yield venue (draw <= your allowance -> Aave/Moonwell withdraw -> gasless deliver).
Inferred read-onlyrobyn_yield_spendSpend from your yield (Aave v3 or Moonwell) with ONE EIP-712 signature: Robyn pulls only up to your on-chain aUSDC/mUSDC allowance, unwinds exactly what is needed, and delivers gaslessly; the remainder keeps earning.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.robyn]
url = "https://api.anygas.xyz/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"robyn": {
"type": "http",
"url": "https://api.anygas.xyz/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: robyn
Remote MCP URL: https://api.anygas.xyz/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"robyn": {
"url": "https://api.anygas.xyz/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"robyn": {
"type": "http",
"url": "https://api.anygas.xyz/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "robyn",
"transport": "streamable-http",
"url": "https://api.anygas.xyz/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://anygas.xyz/mcp
MCP server metadata
- Name
- robyn
- Version
- 1.0.3
Known tools 23
robyn_meshList the Robyn gasless chains and the cross-chain route graph (22 EVM nodes + Stellar), plus the relayer/Permit2 addresses.
Inferred read-onlyrobyn_vip_statusCheck whether an address holds a recognised member NFT and what it gets.
Inferred read-onlyrobyn_route_statusStatus of an in-flight route by id (BRIDGING → DONE), with the destination tx once delivered.
Inferred read-onlyrobyn_cross_chainPlan a gasless cross-chain move and get the exact payload to sign.
Inferred read-onlyrobyn_prepareTurn a plain-language or structured intent into a concrete plan plus the EXACT payload to sign.
Inferred read-onlyrobyn_sandbox_doRuns the identical path end to end against the sandbox: no key, no funds, no broadcast.
Inferred read-onlyrobyn_netting_infoExplains the opt-in netting ledger: transfers between two ENROLLED accounts settle as a book entry — no chain, no gas, no fee, instant, at ANY size including amounts below every per-chain cost floor.
Inferred read-onlyrobyn_netting_accountWhether an address is enrolled (and therefore custodied), its internal balance, recent history, and `nextNonce` — which you MUST use when signing the next transfer or withdrawal.
Potential side effectsrobyn_netting_statementInternal transfers produce NO transaction hash because no transaction occurs — this append-only journal is their only record.
Inferred read-onlyrobyn_netting_reservesPublishes what Robyn OWES across all netting accounts against the real relayer float backing it, per chain.
Inferred read-onlyrobyn_netting_enroll_payloadReturns the EXACT message the account must sign with its OWN key to open a custodial balance.
Potential side effectsrobyn_netting_transfer_payloadReturns the exact string to sign, with the correct next nonce, for a free instant transfer between two ENROLLED accounts.
Potential side effectsrobyn_errorsThe full error taxonomy: every errorCode, whether it is retryable, and the suggested recovery action.
Inferred read-onlyrobyn_7702_delegateThe canonical Robyn EIP-7702 batch-executor delegate: its address on each of the 22 EVM chains, the ABI, and the EIP-712 scheme for executeSigned.
Inferred read-onlyrobyn_7702_checkCheck that a signed EIP-7702 authorization tuple recovers the expected account, and whether its nonce matches the live account nonce.
Inferred read-onlyrobyn_sponsor_7702Price or request an EIP-7702 sponsored transaction: Robyn submits your signed authorization as a type-4 transaction and PAYS THE GAS, so your account needs no native token.
Inferred read-onlyrobyn_yield_accountAn agent's own Aave v3 / Moonwell position (aUSDC/mUSDC) per chain + the capped allowance it granted the relayer + live APY (best-yield auto-selected).
Inferred read-onlyrobyn_yield_quoteRead-only JIT quote: how a spend would be fulfilled from an agent's Aave yield venue (draw <= your allowance -> Aave/Moonwell withdraw -> gasless deliver).
Inferred read-onlyrobyn_yield_spendSpend from your yield (Aave v3 or Moonwell) with ONE EIP-712 signature: Robyn pulls only up to your on-chain aUSDC/mUSDC allowance, unwinds exactly what is needed, and delivers gaslessly; the remainder keeps earning.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.robyn]
url = "https://anygas.xyz/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"robyn": {
"type": "http",
"url": "https://anygas.xyz/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: robyn
Remote MCP URL: https://anygas.xyz/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"robyn": {
"url": "https://anygas.xyz/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"robyn": {
"type": "http",
"url": "https://anygas.xyz/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "robyn",
"transport": "streamable-http",
"url": "https://anygas.xyz/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for anygas.xyz was fetched 2026-07-27T20:57:39.647Z.
anygas.xyz is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.