Buda MCP Server

Buda.com market data: prices, order books, trades, and volume for crypto markets in CLP, COP, PEN.

Remote serverstreamable-httpTypeScript

What is the Buda MCP server?

Connect Buda to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Buda.com market data: prices, order books, trades, and volume for crypto markets in CLP, COP, PEN. The buda mcp server is what makes that connection.

What the server does

MCP server for Buda.com — the leading cryptocurrency exchange in Chile, Colombia, and Peru. Gives any MCP-compatible AI assistant live access to market data, order books, trade history, spreads, technical indicators, and price simulation — no account or API key required.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_markets — List all trading pairs on Buda.com, or get details for a specific market (fees, minimum order size, discount tiers)
  • get_ticker — Current snapshot: last price, best bid/ask, 24h volume, and price change over 24h and 7d
  • get_orderbook — Current order book: sorted bids and asks as {price, amount} objects
  • get_trades — Recent trade history as typed objects: {timestamp_ms, amount, price, direction}
  • get_market_volume — 24h and 7-day transacted volume by side (bid = buys, ask = sells)
  • get_spread — Bid/ask spread: absolute value and percentage of the ask price
  • compare_markets — Side-by-side ticker data for all pairs of a given base currency across all quote currencies
  • get_price_history — OHLCV candles aggregated from raw trade history (Buda has no native candlestick endpoint). Supports 5m, 15m, 30m, 1h, 4h, 1d periods
  • get_arbitrage_opportunities — Detects cross-country price discrepancies for an asset across Buda's CLP, COP, and PEN markets, normalized to USDC
  • simulate_order — Simulates a buy or sell order using live ticker data — no order is ever placed. Returns estimated_fill_price, fee_amount, total_cost
  • calculate_position_size — Kelly-style position sizing from capital, risk %, entry, and stop-loss. Fully client-side — no API call
  • get_market_sentiment — Composite sentiment score (−100 to +100) from three components: 24h price variation (40%), volume vs 7-day average (35%), spread vs market-type

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Buda's toolset — get_markets, get_ticker, get_orderbook and 11 more — is a fair guide to whether it matches your workflow. It is maintained by gtorreal; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Buda.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_marketsList all trading pairs on Buda.com, or get details for a specific market (fees, minimum order size, discount tiers).
get_tickerCurrent snapshot: last price, best bid/ask, 24h volume, and price change over 24h and 7d.
get_orderbookCurrent order book: sorted bids and asks as {price, amount} objects.
get_tradesRecent trade history as typed objects: {timestamp_ms, amount, price, direction}.
get_market_volume24h and 7-day transacted volume by side (bid = buys, ask = sells).
get_spreadBid/ask spread: absolute value and percentage of the ask price.
compare_marketsSide-by-side ticker data for all pairs of a given base currency across all quote currencies.
get_price_historyOHLCV candles aggregated from raw trade history (Buda has no native candlestick endpoint). Supports 5m, 15m, 30m, 1h, 4h, 1d periods.
get_arbitrage_opportunitiesDetects cross-country price discrepancies for an asset across Buda's CLP, COP, and PEN markets, normalized to USDC.
simulate_orderSimulates a buy or sell order using live ticker data — no order is ever placed. Returns estimated_fill_price, fee_amount, total_cost, slippage_vs_mid_pct. All responses include simulation: true.
calculate_position_sizeKelly-style position sizing from capital, risk %, entry, and stop-loss. Fully client-side — no API call.
get_market_sentimentComposite sentiment score (−100 to +100) from three components: 24h price variation (40%), volume vs 7-day average (35%), spread vs market-type baseline (25%). Returns score, label, component_breakdown, and a disclaimer.
get_technical_indicatorsRSI (14), MACD (12/26/9), Bollinger Bands (20, 2σ), SMA 20, SMA 50 — computed server-side from Buda trade history (no external libraries). Returns signal interpretations and a structured warning if fewer than 20 candles
get_real_quotationReturns a real-time quotation for a given order amount and direction, showing exact fill price, fee, and balance changes without placing an order.

How to install the Buda MCP server

### Cursor (`~/.cursor/mcp.json`)

```json
{
  "mcpServers": {
    "buda-mcp": {
      "command": "npx",
      "args": ["-y", "@guiie/buda-mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Buda to get markets.
  • Use Buda to get ticker.
  • Use Buda to get orderbook.

Frequently asked questions

It connects Buda to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_markets, get_ticker, get_orderbook, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Buda directly.