Agent Framework Integrations

Agent Framework Integrations
Hyperdrome is designed to be accessible from any AI agent, not just our own. The protocol exposes its functionality through multiple integration layers so that third-party agents, frameworks, and platforms can interact with Hyperdrome natively.

GOAT SDK

200+ tools, 13+ framework adapters

MCP

Claude Desktop, Cursor, Opencode

Wayfinder

AI-native DeFi terminal

Eliza

Autonomous social + DeFi agents

Olas

Decentralized autonomous agents

REST API

Direct HTTP endpoints for any developer

Integration Architecture

Integration Architecture
LayerComponentsRole
AI Agent FrameworksClaude, GPT, Gemini, Llama, Mistral, …User-facing AI models
Adapter LayerGOAT SDK, Wayfinder, Eliza, LangChain, Vercel AI, MCP, REST APITranslate agent calls to protocol actions
Hyperdrome ProtocolIntent Parser → Context → Tx Builder → ChainParse, gather data, build transactions
HyperEVMRouter, Voter, Gauges, VotingEscrow, …On-chain smart contracts
Any framework that supports one of the adapter layers can interact with Hyperdrome. No custom integration code needed.

GOAT SDK Plugin

The GOAT SDK plugin is on the roadmap and not yet published.
GOAT SDK is the largest agentic finance toolkit — 200+ tools, 15+ chains, 13+ framework adapters. Protocols like Uniswap, Aave, 1inch, and Balancer already have GOAT plugins. Hyperdrome will publish @goat-sdk/plugin-hyperdrome with full protocol coverage:

Exposed Actions

ActionDescription
swapSwap tokens with optimized routing
addLiquidityDeposit into volatile or stable pools
removeLiquidityWithdraw from pools
stakeLpStake LP tokens in gauges
unstakeLpUnstake from gauges
lockLock HDROME → veHDROME (create/extend veNFT)
voteAllocate votes across gauges
claimRewardsClaim emissions, fees, bribes, rebases
getPoolsList pools with TVL, APR, volume
getPortfolioFull wallet analysis

Framework Reach

Once the GOAT plugin is published, Hyperdrome is automatically available in:
FrameworkType
Vercel AI SDKFull-stack AI apps
LangChainAgent orchestration (Python & JS)
LlamaIndexData-augmented agents
MCPClaude Desktop, Cursor, Opencode
ElizaAutonomous social + DeFi agents
CrewAIMulti-agent systems
MastraTypeScript agent framework
GAME (Virtuals)Gaming + DeFi agents
OpenAI Agents SDKOpenAI’s native agent runtime
ZerePyPython agent framework
AutoGenMicrosoft’s multi-agent framework
OlasDecentralized autonomous agents

Wayfinder Paths

The Wayfinder integration is on the roadmap and not yet available.
Wayfinder is an AI-native DeFi terminal with its own SDK (Paths). It already supports Hyperliquid perps, Aave V3, Morpho, Pendle, and Uniswap V3. Hyperdrome will publish a Wayfinder protocol adapter enabling:
  • Swap, LP, vote, and lock via Wayfinder Shells (AI trading interface)
  • Strategy composition — combine Hyperdrome yield with cross-protocol strategies
  • MCP bridge — Wayfinder’s built-in MCP server will expose Hyperdrome tools

Eliza (ElizaOS)

Eliza is the leading open-source framework for autonomous crypto agents. It powers social + DeFi bots that operate on Twitter, Telegram, and on-chain. Hyperdrome integration via the GOAT plugin (@elizaos/plugin-goat):
  • Eliza agents can swap, LP, vote, and claim on Hyperdrome
  • Autonomous yield farming — agents that monitor APRs and rebalance positions
  • Social + DeFi — agents that post yield updates, respond to community questions, and execute trades

Olas (Autonolas)

Olas is a decentralized platform for co-owning and running autonomous AI agents. 3,600+ agents deployed, 17M+ transactions. Hyperdrome integration path:
  • Build an Olas agent service that manages Hyperdrome positions
  • Register as a Mech in the Olas marketplace — other agents can hire Hyperdrome actions
  • Compose with existing Olas agents for cross-protocol strategies

REST API

The public REST API is on the roadmap and not yet available.
For developers who want direct integration without a framework:

Planned Endpoints

MethodEndpointDescription
GET/api/poolsList all pools with TVL, APR, fees, volume
GET/api/pools/:addressPool details
GET/api/portfolio/:walletFull portfolio analysis
GET/api/yieldsTop yield opportunities
POST/api/quoteGet a swap quote
POST/api/swapBuild a swap transaction
POST/api/liquidity/addBuild an add-liquidity transaction
POST/api/liquidity/removeBuild a remove-liquidity transaction
POST/api/lockBuild a lock transaction
POST/api/voteBuild a vote transaction
POST/api/claimBuild a claim-all transaction

Response Format

All write endpoints return unsigned transaction data:
{
  "tx": {
    "to": "0x...",
    "data": "0x...",
    "value": "0",
    "chainId": 999,
    "gasLimit": "250000"
  },
  "summary": {
    "action": "Swap 100 USDC → 1.62 HYPE",
    "priceImpact": "0.03%",
    "route": ["USDC", "HYPE"],
    "minReceived": "1.611 HYPE"
  }
}
The API never requires private keys. All transactions are returned unsigned for client-side signing.

LangChain Tool

For Python developers using LangChain directly:
from langchain.tools import tool

@tool
def hyperdrome_swap(from_token: str, to_token: str, amount: str) -> str:
    """Swap tokens on Hyperdrome (HyperEVM). Returns unsigned transaction."""
    # Calls Hyperdrome REST API
    ...
The GOAT SDK adapter handles this automatically, but developers can also build custom LangChain tools against the REST API.

Build Your Own Integration

Want to integrate Hyperdrome into your agent, bot, or app?
  1. Fastest — Use the GOAT SDK plugin. Works with 13+ frameworks out of the box.
  2. Most flexible — Use the REST API directly. Build and sign transactions in any language.
  3. AI-native — Connect via MCP. Works with Claude Desktop, Cursor, Opencode, and any MCP client.
  4. Autonomous — Build an Olas agent service for fully decentralized, on-chain agent execution.
All integration layers return unsigned transactions — your app handles signing and submission. Hyperdrome never touches private keys.