> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v3/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v3/sportmonks-ai-docs/mcp-server-beta/tools/players-teams-and-leagues.md).

# Players, Teams & Leagues

Fetch full profiles for players, teams, and leagues by their Sportmonks ID. Use the `search` tool first if you don't know the ID.

### Tools

| Tool         | Description                                 |
| ------------ | ------------------------------------------- |
| `get_player` | Full player profile by Sportmonks player ID |
| `get_team`   | Team profile by Sportmonks team ID          |
| `get_league` | League details by Sportmonks league ID      |

### get\_player

**Parameters**

| Parameter | Type    | Required | Description          |
| --------- | ------- | -------- | -------------------- |
| `id`      | integer | Yes      | Sportmonks player ID |

**Returns:** name, position, nationality, date of birth, current team (resolved via a two-step lookup).

### get\_team

**Parameters**

| Parameter | Type    | Required | Description        |
| --------- | ------- | -------- | ------------------ |
| `id`      | integer | Yes      | Sportmonks team ID |

**Returns:** name, country, venue.

### get\_league

**Parameters**

| Parameter | Type    | Required | Description          |
| --------- | ------- | -------- | -------------------- |
| `id`      | integer | Yes      | Sportmonks league ID |

**Returns:** name, country, current\_season\_id, current\_season\_name.

### Example prompts

* *Get the profile for player ID 14322*
* *What country is team 85 from?*
* *Get the details for league 8 - what competition is it?*
* *Search for "Mbappe" then get his full player profile*


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sportmonks.com/v3/sportmonks-ai-docs/mcp-server-beta/tools/players-teams-and-leagues.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
