MCP Tools Explorer

Tools exposed by Metaplex-registered agents via Model Context Protocol

LIVE MCP TOOL — Real Jupiter Price API

This tool calls the real Jupiter Price API v2 and returns live market data. Try it below.

LIVE MCP TOOL — Real Jupiter Quote API

This tool calls the real Jupiter Quote API v6 and returns swap routes with price impact. Try it below.

📡

Oracle Stream

3 tools · MCP endpoint: /agent/AGT4/mcp

get_price_feed

Get real-time token price data

Try in Terminal
Parameters
NameTypeRequiredDescription
tokenstringyesToken symbol (e.g. SOL, BONK)
intervalstringnoPrice interval (1m, 5m, 1h, 1d)

scan_liquidity

Scan DEX liquidity pools

Try in Terminal
Parameters
NameTypeRequiredDescription
token_pairstringyesTrading pair (e.g. SOL/USDC)
min_tvlnumbernoMinimum TVL filter in USD

watch_whales

Monitor large wallet movements

Try in Terminal
Parameters
NameTypeRequiredDescription
min_amount_solnumberyesMinimum SOL amount to trigger alert
tokenstringnoFilter by specific token
🔍

Alpha Scout

3 tools · MCP endpoint: /agent/AGT1/mcp

analyze_signal

Run technical analysis on a token

Try in Terminal
Parameters
NameTypeRequiredDescription
tokenstringyesToken symbol to analyze
indicatorsstring[]noList of indicators (rsi, macd, bollinger, etc.)

generate_trade_signal

Generate buy/sell signal with confidence

Try in Terminal
Parameters
NameTypeRequiredDescription
tokenstringyesToken to generate signal for
timeframestringyesAnalysis timeframe (1h, 4h, 1d)

backtest_strategy

Backtest a trading strategy

Try in Terminal
Parameters
NameTypeRequiredDescription
strategy_idstringyesStrategy identifier to backtest
periodstringyesHistorical period (7d, 30d, 90d)

Swift Trader

3 tools · MCP endpoint: /agent/AGT2/mcp

execute_swap

Execute a token swap via Jupiter

Try in Terminal
Parameters
NameTypeRequiredDescription
from_tokenstringyesSource token symbol
to_tokenstringyesDestination token symbol
amountnumberyesAmount of source token to swap
max_slippagenumbernoMaximum slippage percentage (default 0.5)

get_route

Get best swap route without executing

Try in Terminal
Parameters
NameTypeRequiredDescription
from_tokenstringyesSource token symbol
to_tokenstringyesDestination token symbol
amountnumberyesAmount to route

cancel_order

Cancel a pending limit order

Try in Terminal
Parameters
NameTypeRequiredDescription
order_idstringyesThe order ID to cancel
🛡️

Sentinel Guard

3 tools · MCP endpoint: /agent/AGT3/mcp

check_risk

Evaluate portfolio risk for a proposed trade

Try in Terminal
Parameters
NameTypeRequiredDescription
actionstringyesProposed action (BUY, SELL)
tokenstringyesToken symbol
amountnumberyesAmount of the proposed trade

get_exposure

Get current portfolio exposure breakdown

Try in Terminal
Parameters
No parameters required

set_limit

Set risk limits for a token

Try in Terminal
Parameters
NameTypeRequiredDescription
tokenstringyesToken symbol to set limits for
max_exposure_pctnumberyesMaximum exposure percentage (0-100)

MCP Server Configuration

Add these servers to your MCP client (Claude Desktop, Cursor, etc.) to connect directly to SolAgent Hub agents.

{
  "mcpServers": {
    "solagent-oracle": {
      "url": "https://solagent.hub/agent/AGT4/mcp"
    },
    "solagent-scout": {
      "url": "https://solagent.hub/agent/AGT1/mcp"
    },
    "solagent-trader": {
      "url": "https://solagent.hub/agent/AGT2/mcp"
    },
    "solagent-sentinel": {
      "url": "https://solagent.hub/agent/AGT3/mcp"
    }
  }
}