Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.etonecarg.com/llms.txt

Use this file to discover all available pages before exploring further.

MCP Basics

Sports MCP Server uses standard MCP JSON-RPC over HTTP.

Typical workflow

  1. discover the catalog through tools/list or the capability manifest
  2. resolve fuzzy language with resolve_entities when needed
  3. choose the smallest tool that matches the job
  4. reuse provider refs in follow-on calls

Standard request shape

{
  "jsonrpc": "2.0",
  "id": "req-1",
  "method": "tools/call",
  "params": {
    "name": "resolve_entities",
    "arguments": {
      "query": "Knicks",
      "entityType": "participant",
      "resolutionProfile": "balanced",
      "limit": 3
    }
  }
}

Capability discovery

Fetch GET /?view=capabilities when the host wants a cheap, published summary of the 24-tool contract, argument expectations, and capability hints.

Read this next