{
  "name": "riptide",
  "agentId": 5412,
  "endpoint": "https://asp.btc-vip.online/mcp",
  "transport": "streamable-http",
  "documentation": "https://asp.btc-vip.online/",
  "schema": "https://asp.btc-vip.online/.well-known/mcp.json",
  "payment": {
    "requiredForToolCalls": true,
    "price": "0.1 USDT0",
    "network": "eip155:196"
  },
  "usage": "A2MCP buyers may send the primary tool arguments as a plain JSON body. MCP clients may instead send one JSON-RPC tools/call request using an exact tool name and arguments.",
  "tools": [
    {
      "name": "meme_pretrade_intelligence",
      "description": "Discover and analyze a token through global DEX network auto-detection. Enhanced contract-security coverage is available on Solana, Ethereum, BSC, Base, Arbitrum, Polygon, Optimism, Avalanche, and X Layer; Robinhood Chain and other indexed networks receive clearly labeled basic coverage. Returns live market data, X posts and callers, risk evidence, available holder data, and an optional liquidity stress test. Unsupported fields are omitted rather than inferred.",
      "required": [
        "chain",
        "token"
      ],
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "chain": {
            "type": "string",
            "description": "Use 'auto' for global DEX network discovery, or select solana, ethereum, bsc, base, arbitrum, polygon, optimism, avalanche, xlayer, or robinhood."
          },
          "token": {
            "type": "string",
            "description": "Token contract address; EVM 0x address or Solana mint."
          },
          "options": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "social": {
                "type": "boolean",
                "default": true,
                "description": "Search live X posts mentioning the exact contract."
              },
              "callers": {
                "type": "boolean",
                "default": true,
                "description": "Include caller records and available caller history."
              },
              "capital": {
                "type": "boolean",
                "default": true,
                "description": "Include available onchain capital and holder signals."
              },
              "simulation": {
                "type": "boolean",
                "default": false,
                "description": "Include a non-executable liquidity stress test."
              },
              "simulationAmounts": {
                "type": "array",
                "items": {
                  "type": "number",
                  "minimum": 1,
                  "maximum": 1000000
                },
                "uniqueItems": true,
                "description": "Custom USD sizes for the non-executable liquidity stress test."
              }
            }
          }
        },
        "required": [
          "chain",
          "token"
        ]
      },
      "requestExample": {
        "jsonrpc": "2.0",
        "id": 1,
        "method": "tools/call",
        "params": {
          "name": "meme_pretrade_intelligence",
          "arguments": {
            "chain": "auto",
            "token": "<TOKEN_CONTRACT_ADDRESS>",
            "options": {
              "social": true,
              "callers": true,
              "capital": true,
              "simulation": false
            }
          }
        }
      }
    },
    {
      "name": "wallet_intelligence",
      "description": "Analyze a public EVM or Solana wallet. Returns detected networks, native balances, indexed holdings, DEX buy/sell activity, realized and token-level P&L, and an evidence-based behavior profile. Exact lifetime gas is explicitly unavailable unless fully indexed.",
      "required": [
        "address"
      ],
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "address": {
            "type": "string",
            "description": "Public EVM 0x wallet address or Solana wallet address."
          }
        },
        "required": [
          "address"
        ]
      },
      "requestExample": {
        "jsonrpc": "2.0",
        "id": 1,
        "method": "tools/call",
        "params": {
          "name": "wallet_intelligence",
          "arguments": {
            "address": "<WALLET_ADDRESS>"
          }
        }
      }
    }
  ],
  "version": "0.3.6"
}