network

Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp

Return the blockchain network name for a Gemini-listed token (e.g. btc → bitcoin, eth → ethereum). Use to resolve deposit/withdrawal network before on-chain operations.

Parameters

NameTypeRequiredDescription
tokenstringyes

Example call

Arguments

{
  "token": "ETH"
}

curl

curl -X POST https://gateway.pipeworx.io/gemini-crypto/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"network","arguments":{"token":"ETH"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('network', {
  "token": "ETH"
});

Response shape

FieldTypeDescription
networksarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "networks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "network_code": {
            "type": "string",
            "description": "Network code identifier"
          },
          "is_deposit_enabled": {
            "type": "boolean",
            "description": "Whether deposits are enabled"
          },
          "is_withdrawal_enabled": {
            "type": "boolean",
            "description": "Whether withdrawals are enabled"
          },
          "min_withdrawal_amount": {
            "type": "string",
            "description": "Minimum withdrawal amount"
          },
          "withdrawal_fee": {
            "type": "string",
            "description": "Withdrawal fee"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gemini-crypto": {
      "url": "https://gateway.pipeworx.io/gemini-crypto/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026