INDIVIDUAL MCP TOOL
get_player
Get a single player identity profile: name, sport, country, position/handedness, physical stats, current team, rankings (tennis {singles, points}; null on every other sport), and image_url (Lumify media URL, null until the sport's headshot/enrichment job).
LIVE ENDPOINT
https://lumify.ai/mcp
Connect to this endpoint to inspect the live schema for get_player and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.lumify-mcp]
url = "https://lumify.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"lumify-mcp": {
"type": "http",
"url": "https://lumify.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: lumify-mcp
Remote MCP URL: https://lumify.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"lumify-mcp": {
"url": "https://lumify.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"lumify-mcp": {
"type": "http",
"url": "https://lumify.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "lumify-mcp",
"transport": "streamable-http",
"url": "https://lumify.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_sports— List supported sports with their leagues and current season.list_events— List events (schedules and live scores), paginated by id (after_id).get_event— Get a single event with participants and venue.batch_get_events— Get multiple events by id in one call — for agents that already have a list of ids and want full detail for each without one call per event.query_events— Search events with a natural-language query instead of structured filters — e.get_live_score— Get a lightweight live score snapshot for an event: status, period, clock, per-participant score and period-by-period scores, and last-updated time.get_odds— Get current betting odds for an event: per-bookmaker lines and last-updated time.get_odds_history— Get line-movement history for an event: a list of past odds snapshots (movements), each with its own timestamp, up to limit entries.