Stoxly MCP Server

Give your AI assistant free stock & ETF fundamental analysis — a remote MCP server with no installation, no account and no API key.

Endpoint

Endpoint URL
https://www.stoxlyonline.com/api/mcp
Transport
Streamable HTTP
Authentication
None
Rate limit
30 tool calls / IP / hour

Setup

Claude Code

Terminal
claude mcp add --transport http stoxly https://www.stoxlyonline.com/api/mcp

Claude (desktop app & claude.ai)

Settings → Connectors → Add custom connector → paste the endpoint URL:

Endpoint URL
https://www.stoxlyonline.com/api/mcp

Cursor & other MCP clients

mcp.json
{
  "mcpServers": {
    "stoxly": {
      "url": "https://www.stoxlyonline.com/api/mcp"
    }
  }
}

Then just ask your assistant something like “Analyze AAPL with Stoxly” or “Compare VOO and QQQ fundamentals” — it will call the tools below automatically.

Tools

analyze_stock

Fundamental analysis of any publicly traded stock. Returns the 10-point score, a descriptive verdict, per-criterion checks (P/E, PEG, price/book, revenue growth, ROE, operating margin, return on assets, quick ratio, debt/equity, free cash flow yield), every metric value and the link to the full analysis page. null means a metric was unavailable — it is never treated as 0.

symbolstring · required

Ticker in Yahoo Finance format, e.g. AAPL, BRK-B, SAP.DE.

analyze_etf

Analysis of an ETF (US-listed funds have the most complete data). Returns the 10-point score, verdict and checks covering expense ratio, fund size and age, holdings, concentration, volatility and 1/3/5-year returns.

symbolstring · required

ETF ticker, e.g. VOO, QQQ, SCHD.

Plain JSON API

The same analysis is available as a single JSON request — useful for scripts or non-MCP integrations, with the same 30-requests-per-hour limit:

Request
curl "https://www.stoxlyonline.com/api/stock/analysis?symbol=AAPL"
Response (truncated)
{
  "data": {
    "symbol": "AAPL",
    "companyName": "Apple Inc",
    "price": 313.33,
    "changePercent": 0.29,
    "marketCap": 4572794375086,
    "sector": "Technology",
    "hasRatios": true,
    "metrics": {
      "peRatio": 35.47,
      "pegRatio": 2.93,
      "priceToBookRatio": 50.98,
      "revenueGrowth": 1.81,
      "roe": 151.91,
      "operatingMargin": 31.97,
      "returnOnAssets": 31.18,
      "quickRatio": 0.86,
      "debtToEquityRatio": 1.35,
      "freeCashFlowYield": 0
    }
  }
}

Note: in this raw endpoint a ratio value of 0 means “not available”; the MCP tools return null for unavailable metrics instead.

Scoring thresholds and data sources are documented on the methodology page and in llms-full.txt.

Prefer a human-readable analysis?

The same 10-point evaluation is free on the website — no setup at all.

Frequently asked questions

What is the Stoxly MCP server?+

It is a remote server implementing the Model Context Protocol (MCP), the open standard AI assistants like Claude, ChatGPT and Cursor use to call external tools. Once connected, your AI assistant can run Stoxly analyses itself: ask it about any stock or ETF and it fetches the 10-point score, verdict and all underlying metrics directly from Stoxly.

Is the MCP server free and do I need an API key?+

Yes, it is free, and no API key or account is required. Usage is rate-limited to 30 tool calls per IP per hour, which is plenty for personal research and watchlists. The same data is also available as a plain JSON endpoint with the same limit.

Which stocks and ETFs are supported?+

Any symbol Stoxly itself supports, in Yahoo Finance ticker format: US listings (AAPL, BRK-B), European listings (SAP.DE, ASML.AS) and Asian listings including Hong Kong/China. ETF fund statistics are most complete for US-listed ETFs such as VOO or QQQ; European ETF listings often return partial data.

For educational purposes only. Not financial advice. Data may be delayed.