{"schema_version":"1.0","name":"Fluid Wallet MCP","description":"MCP server exposing Fluid Wallet agent tools: send, swap, quote, history.","transport":"https","endpoint":"https://fluidnative.com/v1/mcp","auth":{"type":"bearer","header":"X-Agent-Key","obtain":"https://fluidnative.com/agentic-keys"},"tools":[{"name":"fluid_send","description":"Send ETH or ERC-20 tokens on Base or Ethereum to an address or email.","input_schema":{"type":"object","properties":{"to":{"type":"string","description":"Recipient wallet address or Fluid email"},"amount":{"type":"string","description":"Amount to send"},"token":{"type":"string","description":"Token symbol, e.g. ETH, USDC","default":"ETH"},"chain":{"type":"string","description":"Chain: base | ethereum","default":"base"}},"required":["to","amount"]}},{"name":"fluid_swap","description":"Swap tokens via Fluid Smart Order Router (SOR) on Base.","input_schema":{"type":"object","properties":{"fromToken":{"type":"string"},"toToken":{"type":"string"},"amount":{"type":"string"},"slippage":{"type":"string","default":"0.5"}},"required":["fromToken","toToken","amount"]}},{"name":"fluid_quote_swap","description":"Get a price quote for a swap without executing.","input_schema":{"type":"object","properties":{"fromToken":{"type":"string"},"toToken":{"type":"string"},"amount":{"type":"string"}},"required":["fromToken","toToken","amount"]}},{"name":"fluid_history","description":"Get recent transaction history for the authenticated wallet.","input_schema":{"type":"object","properties":{"limit":{"type":"number","default":20}}}},{"name":"fluid_agent_pay","description":"Pay another Fluid Wallet user by their email address.","input_schema":{"type":"object","properties":{"toEmail":{"type":"string"},"amount":{"type":"string"},"token":{"type":"string","default":"USDC"},"memo":{"type":"string"}},"required":["toEmail","amount"]}}]}