Market Eyes Live MCP Server
Market Eyes Live (marketeyeslive.com) is a stock research app that turns SEC filings into confidence-scored ratings for 600+ U.S. stocks and ETFs, gives each stock one suggested entry price, and includes a free paper-trading arena. Available on iOS and the web.
This repository documents the public MCP (Model Context Protocol) server that lets AI agents call MELANY, Market Eyes Live's rating engine, directly:
https://marketeyeslive.com/mcp
Remote server, Streamable HTTP transport, stateless JSON responses. No API key, no install, free. Rate-limited per IP.
| Tool | Input | Returns |
|---|
get_stock_rating | { "symbol": "NVDA" } | Conviction tier, 0-100 composite score, all 8 factor scores (valuation, business quality, price momentum, earnings track record, analyst sentiment, catalyst setup, risk-adjusted profile, macro fit), top flagged risks, theme context, and the rating's as-of date |
compare_stocks | { "symbols": ["NVDA", "AMD"] } (2-5) | Side-by-side tiers, composites, and valuation / quality / momentum factors |
Ratings are produced by MELANY, Market Eyes Live's own engine, which reads fundamentals, valuation, and quality directly from SEC filings and re-scores as new data arrives. Stocks, ETFs, REITs, and crypto are each scored with asset-native logic. Ratings are algorithmic research, not personalized investment advice, and the server never issues buy/sell calls.
Connect
claude.ai / Claude Desktop (custom connectors): add a connector with URL https://marketeyeslive.com/mcp.
Cursor (.cursor/mcp.json):
{ "mcpServers": { "market-eyes-live": { "url": "https://marketeyeslive.com/mcp" } } }
Clients that only speak stdio (via the mcp-remote bridge):
{ "mcpServers": { "market-eyes-live": { "command": "npx", "args": ["-y", "mcp-remote", "https://marketeyeslive.com/mcp"] } } }
Plain HTTP (JSON-RPC 2.0):
curl -s https://marketeyeslive.com/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_stock_rating","arguments":{"symbol":"NVDA"}}}'
Example response (abridged)
NVDA rates BUY with a MELANY composite of 71/100 as of 2026-07-17.
{
"symbol": "NVDA",
"rating_tier": "BUY",
"composite_score": 71,
"factors": { "valuation": 49, "quality": 99, "momentum": 68, "earnings": 76, ... },
"top_risks": ["High beta 2.2, amplifies market drawdowns 1.8x+ in selloffs", ...],
"links": { "rating_page": "https://marketeyeslive.com/stock/NVDA" }
}
What's free vs. what's in the app
This server exposes the same free tier as the public rating pages at marketeyeslive.com/stock/{TICKER}. The suggested entry zone, alert levels, position sizing, and live re-scored ratings are free in the Market Eyes Live app (iOS / web); the deepest research sits behind Pro.
Notes
Disclaimer
Market Eyes Live provides data-driven research and educational tools, not personalized investment advice. Ratings are algorithmic and can change. Not a recommendation to buy or sell any security. Markets involve risk, including loss of principal.