๐Ÿš€ Quick Start
For AI Agents

Quick Start

Get VAEA Flash running in Claude Desktop or Cursor in under 2 minutes.

Claude Desktop

Add to your claude_desktop_config.json:

json
{
  "mcpServers": {
    "vaea-flash": {
      "command": "npx",
      "args": ["-y", "@vaea/mcp-server"],
      "env": {
        "VAEA_API_URL": "https://api.vaea.fi"
      }
    }
  }
}

Restart Claude Desktop. You'll see the VAEA tools in the ๐Ÿ”จ menu. Try: "What SOL liquidity is available for a flash loan?"

Cursor

Add to .cursor/mcp.json in your project:

json
{
  "mcpServers": {
    "vaea-flash": {
      "command": "npx",
      "args": ["-y", "@vaea/mcp-server"]
    }
  }
}

First Tool Call

Once connected, ask your AI agent:

๐Ÿ’ฌ "What flash loan liquidity is available on Solana right now?"
๐Ÿ’ฌ "Find the cheapest route to borrow 1000 SOL"
๐Ÿ’ฌ "Is a 1000 SOL flash loan profitable if I expect 0.5 SOL revenue?"
๐Ÿ’ฌ "Build me a flash loan transaction for 500 USDC"
๐Ÿ’ก Tip
The agent will automatically choose the right MCP tool based on your question. You don't need to know the tool names โ€” just describe what you want in natural language.

Rust Server

For lower memory and faster startup, use the native Rust binary:

json
{
  "mcpServers": {
    "vaea-flash": {
      "command": "/path/to/vaea-mcp",
      "env": {
        "VAEA_API_URL": "https://api.vaea.fi"
      }
    }
  }
}

Build with cargo build --release in the mcp/rust/ directory. The binary is ~4MB and starts in milliseconds.

โš ๏ธ Devnet Only
Mainnet โ€” April 2026
๐Ÿ”