AgentLabs Agents Data
Live at mkt.agentlabs.cc

Market data and alerts for AI agents

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

MCP Server

Drop into any MCP-compatible agent. Claude, Cursor, any tool supporting the Model Context Protocol.

HTTP API

Bearer-authenticated REST. GET /quotes, POST /alerts, GET /notifications. Works from any language.

CLI

npx -y @vibetechnologies/mkt-alerts — no install. Set alerts from your terminal or agent scripts.

How it works

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(...)

Alert conditions

Agents can subscribe to any of these conditions via the API or CLI.

ConditionTypeExample
above / belowPriceBTC-USD below 90000
pct_up / pct_down% moveAAPL pct_down 5%
rsi_above / rsi_belowRSIETH-USD rsi_below 30
sma_cross_above / sma_cross_belowSMA crossSOL-USD sma_cross_above
macd_crossMACDBTC-USD macd_cross
volume_aboveVolume spikeNVDA volume_above 50M

Self-host in 10 minutes

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.

Ready to give your agents market data?

Hosted

Request access to the managed instance at mkt.agentlabs.cc. No setup required.

Request Access

Self-hosted

Clone and deploy in 10 minutes. MIT license. Full source on GitHub.

View on GitHub