Buda.com market data: prices, order books, trades, and volume for crypto markets in CLP, COP, PEN.
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.
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.
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 7dget_orderbook — Current order book: sorted bids and asks as {price, amount} objectsget_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 pricecompare_markets — Side-by-side ticker data for all pairs of a given base currency across all quote currenciesget_price_history — OHLCV candles aggregated from raw trade history (Buda has no native candlestick endpoint). Supports 5m, 15m, 30m, 1h, 4h, 1d periodsget_arbitrage_opportunities — Detects cross-country price discrepancies for an asset across Buda's CLP, COP, and PEN markets, normalized to USDCsimulate_order — Simulates a buy or sell order using live ticker data — no order is ever placed. Returns estimated_fill_price, fee_amount, total_costcalculate_position_size — Kelly-style position sizing from capital, risk %, entry, and stop-loss. Fully client-side — no API callget_market_sentiment — Composite sentiment score (−100 to +100) from three components: 24h price variation (40%), volume vs 7-day average (35%), spread vs market-typeBecause 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.
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.
| Tool | What it does |
|---|---|
| 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, slippage_vs_mid_pct. All responses include simulation: true. |
| 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 baseline (25%). Returns score, label, component_breakdown, and a disclaimer. |
| get_technical_indicators | RSI (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_quotation | Returns a real-time quotation for a given order amount and direction, showing exact fill price, fee, and balance changes without placing an order. |
### 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.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.