CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Buda Mcp

gtorreal/buda-mcp
5 toolsSTDIOregistry active
Summary

Connects Claude to Buda.com's public market data across Chile, Colombia, and Peru without requiring API keys. You get live ticker data, order books, trade history, and OHLCV candles for crypto pairs in CLP, COP, and PEN. It includes computed metrics like RSI, MACD, Bollinger Bands, cross-country arbitrage detection, and order simulation with fee estimates. The market summary tool returns liquidity ratings and spreads in one call. Useful when you're building price comparisons, analyzing Latin American crypto markets, or need regional fiat pair data that most exchanges don't surface.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

5 tools
get_marketsList all available trading pairs on Buda.com, or get details for a specific market.1 params

List all available trading pairs on Buda.com, or get details for a specific market.

Parameters* required
market_idstring
Optional market ID (e.g. BTC-CLP)
get_tickerGet current price, bid/ask, volume, and price change for a Buda.com market.1 params

Get current price, bid/ask, volume, and price change for a Buda.com market.

Parameters* required
market_idstring
Market ID (e.g. BTC-CLP)
get_orderbookGet the full order book (bids and asks) for a Buda.com market.2 params

Get the full order book (bids and asks) for a Buda.com market.

Parameters* required
limitnumber
Max levels per side
market_idstring
Market ID (e.g. BTC-CLP)
get_tradesGet recent trade history for a Buda.com market.3 params

Get recent trade history for a Buda.com market.

Parameters* required
limitnumber
Number of trades (max 100)
market_idstring
Market ID (e.g. BTC-CLP)
timestampnumber
Unix timestamp for pagination
get_market_volumeGet 24h and 7-day transacted volume for a Buda.com market.1 params

Get 24h and 7-day transacted volume for a Buda.com market.

Parameters* required
market_idstring
Market ID (e.g. BTC-CLP)

buda-mcp

npm version License: MIT Node.js >=18

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.


Quick Start

npx @guiie/buda-mcp

Or install permanently:

npm install -g @guiie/buda-mcp
buda-mcp

Install in your MCP client

Claude Code

claude mcp add buda-mcp -- npx -y @guiie/buda-mcp

Claude Desktop (claude_desktop_config.json)

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

Cursor (~/.cursor/mcp.json)

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

Tools

All tools are public — no API key or account required.

get_market_summary ⭐ Start here

One-call summary: last price, bid/ask, spread %, 24h volume, price change, and liquidity_rating (high / medium / low). Best first tool when a user asks about any specific market.

ParameterTypeRequiredDescription
market_idstringYesMarket ID (e.g. BTC-CLP).

get_markets

List all trading pairs on Buda.com, or get details for a specific market (fees, minimum order size, discount tiers).

ParameterTypeRequiredDescription
market_idstringNoMarket ID (e.g. BTC-CLP). Omit to list all markets.

get_ticker

Current snapshot: last price, best bid/ask, 24h volume, and price change over 24h and 7d.

ParameterTypeRequiredDescription
market_idstringYesMarket ID (e.g. BTC-CLP, ETH-COP).

get_orderbook

Current order book: sorted bids and asks as {price, amount} objects.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
limitnumberNoMax price levels per side (default: all).

get_trades

Recent trade history as typed objects: {timestamp_ms, amount, price, direction}.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
limitnumberNoNumber of trades (default 50, max 100).
timestampnumberNoUnix seconds — returns trades older than this (pagination).

get_market_volume

24h and 7-day transacted volume by side (bid = buys, ask = sells).

ParameterTypeRequiredDescription
market_idstringYesMarket ID.

get_spread

Bid/ask spread: absolute value and percentage of the ask price.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.

compare_markets

Side-by-side ticker data for all pairs of a given base currency across all quote currencies.

ParameterTypeRequiredDescription
base_currencystringYesBase currency (e.g. BTC, ETH).

get_price_history

OHLCV candles aggregated from raw trade history (Buda has no native candlestick endpoint). Supports 5m, 15m, 30m, 1h, 4h, 1d periods.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
periodstringNo5m / 15m / 30m / 1h / 4h / 1d (default 1h).
limitnumberNoRaw trades to fetch before aggregation (default 100, max 1000).

get_arbitrage_opportunities

Detects cross-country price discrepancies for an asset across Buda's CLP, COP, and PEN markets, normalized to USDC.

ParameterTypeRequiredDescription
base_currencystringYese.g. BTC.
threshold_pctnumberNoMinimum discrepancy to report (default 0.5).

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.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
sidebuy | sellYesOrder side.
amountnumberYesOrder size in base currency.
pricenumberNoOmit for market order simulation.

calculate_position_size

Kelly-style position sizing from capital, risk %, entry, and stop-loss. Fully client-side — no API call.

ParameterTypeRequiredDescription
market_idstringYesMarket ID (for context).
capitalnumberYesTotal capital to size from.
risk_pctnumberYes% of capital to risk (0.1–10).
entry_pricenumberYesEntry price.
stop_loss_pricenumberYesStop-loss price.

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.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.

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 are available. Includes disclaimer.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
periodstringNo1h / 4h / 1d (default 1h).
limitnumberNoRaw trades to fetch (500–1000).

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.

ParameterTypeRequiredDescription
market_idstringYesMarket ID.
typeBid | AskYesOrder side.
amountnumberYesOrder size in base currency.
limit_pricenumberNoLimit price for limit quotations.

get_available_banks

Lists available banks for fiat deposits/withdrawals in a given currency's country.

ParameterTypeRequiredDescription
currencystringYesFiat currency code (e.g. CLP, COP, PEN).

MCP Resources

In addition to tools, the server exposes MCP Resources that clients can read directly:

URIDescription
buda://marketsJSON list of all Buda.com markets
buda://ticker/{market}JSON ticker for a specific market (e.g. buda://ticker/BTC-CLP)
buda://summary/{market}Full market summary with liquidity rating (e.g. buda://summary/BTC-CLP)

Markets covered

QuoteCountrySample pairs
CLPChileBTC-CLP, ETH-CLP, SOL-CLP
COPColombiaBTC-COP, ETH-COP, SOL-COP
PENPeruBTC-PEN, ETH-PEN
USDCUSD-peggedBTC-USDC, USDT-USDC
BTCCrossETH-BTC, LTC-BTC, BCH-BTC

Build from source

git clone https://github.com/gtorreal/buda-mcp.git
cd buda-mcp
npm install
npm run build
node dist/index.js        # stdio (for MCP clients)
node dist/http.js         # HTTP on port 3000 (for Railway / hosted)

Run tests:

npm run test:unit        # 100 unit tests, no network required
npm run test:integration # live API tests (skips if unreachable)
npm test                 # both

HTTP / Railway deployment

The dist/http.js entrypoint runs an Express server with:

  • POST /mcp — Streamable HTTP MCP transport
  • GET /mcp — SSE streaming transport
  • GET /health — health check ({ status })
  • GET /.well-known/mcp/server-card.json — Smithery-compatible static tool manifest

Environment variables

VariableRequiredDescription
PORTNoHTTP listen port (default: 3000)
MCP_RATE_LIMITNoMax requests per IP per minute on /mcp (default: 120)
TRUST_PROXY_HOPSNoNumber of reverse-proxy hops to trust for X-Forwarded-For (default: 1).

Security

The server exposes only public Buda.com API endpoints. No credentials are accepted or stored. Input validation is applied to all tool parameters to prevent prompt injection. Error messages are sanitized — internal details (paths, upstream errors) are logged to stderr only and never returned to callers.

Reporting vulnerabilities

Please report security issues privately via GitHub Security Advisories — not as public issues. See SECURITY.md for the full disclosure policy.


Project structure

src/
  client.ts                   BudaClient (HTTP + 429 retry)
  cache.ts                    In-memory TTL cache with in-flight deduplication
  types.ts                    TypeScript types for Buda API responses
  validation.ts               validateMarketId(), validateCurrency()
  utils.ts                    flattenAmount(), aggregateTradesToCandles(), getLiquidityRating()
  version.ts                  Single source of truth for version string
  index.ts                    stdio MCP server entrypoint
  http.ts                     HTTP/SSE MCP server entrypoint
  tools/
    markets.ts                get_markets
    ticker.ts                 get_ticker
    orderbook.ts              get_orderbook
    trades.ts                 get_trades
    volume.ts                 get_market_volume
    spread.ts                 get_spread
    compare_markets.ts        compare_markets
    price_history.ts          get_price_history
    arbitrage.ts              get_arbitrage_opportunities
    market_summary.ts         get_market_summary
    simulate_order.ts         simulate_order
    calculate_position_size.ts calculate_position_size
    market_sentiment.ts       get_market_sentiment
    technical_indicators.ts   get_technical_indicators
    banks.ts                  get_available_banks
    quotation.ts              get_real_quotation
marketplace/
  cursor-mcp.json             Cursor MCP config example
  claude-listing.md           Claude registry listing
  openapi.yaml                OpenAPI spec (GPT Actions / HTTP wrapper)
  gemini-tools.json           Gemini function declarations

Documentation

Agent context: AGENTS.md | Operational notes: docs/PROJECT_MEMORY.md | Changelog: CHANGELOG.md | Security: SECURITY.md


License

MIT — Buda.com API docs

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Data & AnalyticsFinance & Commerce
Registryactive
Package@guiie/buda-mcp
TransportSTDIO
UpdatedApr 13, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.