Real-time prices and indicators for 10,000+ stocks and crypto, accessible via MCP, HTTP API, or CLI. Set alerts programmatically. No scraping.
MIT licensed · Self-hostable · Live at mkt.agentlabs.cc
Drop into any MCP-compatible agent. Claude, Cursor, any tool supporting the Model Context Protocol.
Bearer-authenticated REST. GET /quotes, POST /alerts, GET /notifications. Works from any language.
npx -y @vibetechnologies/mkt-alerts — no install. Set alerts from your terminal or agent scripts.
Three integration paths, same data underneath.
# Add to your MCP config (Claude Desktop, Cursor, etc.)
{
"mcpServers": {
"market-data": {
"command": "mkt",
"args": ["mcp"]
}
}
}
# Agent can now call: get_quote("BTC-USD"), get_rsi("AAPL"), set_alert(...)Agents can subscribe to any of these conditions via the API or CLI.
| Condition | Type | Example |
|---|---|---|
above / below | Price | BTC-USD below 90000 |
pct_up / pct_down | % move | AAPL pct_down 5% |
rsi_above / rsi_below | RSI | ETH-USD rsi_below 30 |
sma_cross_above / sma_cross_below | SMA cross | SOL-USD sma_cross_above |
macd_cross | MACD | BTC-USD macd_cross |
volume_above | Volume spike | NVDA volume_above 50M |
MIT licensed. No vendor dependency. Bring your own infrastructure.
git clone https://github.com/dzianisv/mkt-alerts cd mkt-alerts bash deploy.sh # GCP e2-micro free tier + Cloudflare Tunnel
Deploys to a free GCP e2-micro VM behind Cloudflare Tunnel. No open ports.