> ## 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.

# Get Competition Structure

> Return structure, phases, overalls, and classification refs for a competition or competition season.

Canonical tool name: `get_competition_structure`

Family: [Resolution and Scope Tools](/sports-mcp-server/tools/resolution-and-scope-tools)

## What this tool is best at

Return normalized competition structure and hierarchy for a league or competition season.

## Choose this tool when

* the host needs the tournament tree, phase layout, or season hierarchy before calling deeper tools.
* Source ownership: GSD Lookup primary

## Use something smaller or different when

* Do not use it if the product only needs current standings, one event, or watchability.

## Inputs you need

### Plain-English prerequisites

* This tool does not require a prerequisite ID beyond the scoped inputs shown below.

### Required inputs in the public contract

* None.

### Optional inputs in the public contract

| Input                 | What it means                                                                                         |
| --------------------- | ----------------------------------------------------------------------------------------------------- |
| `competitionId`       | GSD-facing competition ref when the host wants the broader competition hierarchy.                     |
| `competitionSeasonId` | GSD-facing season ref when the host wants the exact season structure and phase layout.                |
| `language`            | Optional BCP 47 language hint such as `en-US`. Use it when the host needs translated provider output. |

## Sequencing guidance

| Needed ID or scope | Call this first                                       | Then use                                                                                                      |
| ------------------ | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| scope              | [Tool Catalog](/sports-mcp-server/tools/tool-catalog) | Start from the smallest tool that can safely anchor the workflow, then deepen only if the user asks for more. |

## Response highlights

* Return normalized competition structure and hierarchy for a league or competition season.

## Reuse next

* Reuse provider refs returned by this tool to avoid resolving the same entity again.
* Read `meta.agentHints.recommendedNextTools` and `meta.agentHints.disambiguationOptions` as non-binding host hints.

## Example requests

<CodeGroup>
  ```json JSON-RPC theme={null}
  {
    "jsonrpc": "2.0",
    "id": "tool-call-1",
    "method": "tools/call",
    "params": {
      "name": "get_competition_structure",
      "arguments": {
        "competitionId": "LEAGUE_ID"
      }
    }
  }
  ```

  ```bash curl theme={null}
  curl "https://sports-mcp-server.etonecarg.com/" \
    -X POST \
    -H "Authorization: Bearer $SPORTS_MCP_API_KEY" \
    -H "Accept: application/json, text/event-stream" \
    -H "Content-Type: application/json" \
    -H "mcp-protocol-version: 2025-03-26" \
    -d '{
    "jsonrpc": "2.0",
    "id": "tool-call-1",
    "method": "tools/call",
    "params": {
      "name": "get_competition_structure",
      "arguments": {
        "competitionId": "LEAGUE_ID"
      }
    }
  }'
  ```

  ```ts TypeScript theme={null}
  const payload = {
      "jsonrpc": "2.0",
      "id": "tool-call-1",
      "method": "tools/call",
      "params": {
        "name": "get_competition_structure",
        "arguments": {
          "competitionId": "LEAGUE_ID"
        }
      }
    };

  const response = await fetch("https://sports-mcp-server.etonecarg.com/", {
    method: "POST",
    headers: {
      Authorization: `Bearer ${process.env.SPORTS_MCP_API_KEY!}`,
      Accept: "application/json, text/event-stream",
      "Content-Type": "application/json",
      "mcp-protocol-version": "2025-03-26",
    },
    body: JSON.stringify(payload),
  });

  const data = await response.json();
  console.log(JSON.stringify(data, null, 2));
  ```

  ```python Python theme={null}
  import json
  import os

  import requests

  payload = {
    "jsonrpc": "2.0",
    "id": "tool-call-1",
    "method": "tools/call",
    "params": {
      "name": "get_competition_structure",
      "arguments": {
        "competitionId": "LEAGUE_ID"
      }
    }
  }

  response = requests.post(
      "https://sports-mcp-server.etonecarg.com/",
      headers={
          "Authorization": f"Bearer {os.environ['SPORTS_MCP_API_KEY']}",
          "Accept": "application/json, text/event-stream",
          "Content-Type": "application/json",
          "mcp-protocol-version": "2025-03-26",
      },
      json=payload,
      timeout=30,
  )

  response.raise_for_status()
  print(json.dumps(response.json(), indent=2))
  ```
</CodeGroup>

## Related tools

### Previous-step tools

* [`resolve_entities`](/sports-mcp-server/tool-reference/resolve_entities)

### Next-step tools

* [`get_competition_hub`](/sports-mcp-server/tool-reference/get_competition_hub)
* [`get_standings`](/sports-mcp-server/tool-reference/get_standings)
* [`list_schedule`](/sports-mcp-server/tool-reference/list_schedule)

### Alternative tools

* No common alternatives.

## Prompt patterns this tool fits

* Use `get_competition_structure` when the host already knows the right scope and needs this job directly.

## Common mistakes

* Calling `get_competition_structure` before the host has the right provider refs or bounded window.
* Using `get_competition_structure` when a smaller sibling tool would answer the question more directly.
