> 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/squads.md).

# Squads

Retrieve the current or a historical squad for any team.

### Tool

| Tool        | Description                                                         |
| ----------- | ------------------------------------------------------------------- |
| `get_squad` | Squad for a team, optionally scoped to a specific historical season |

### Parameters

| Parameter   | Type    | Required | Description                                      |
| ----------- | ------- | -------- | ------------------------------------------------ |
| `team_id`   | integer | Yes      | Sportmonks team ID                               |
| `season_id` | integer | No       | Sportmonks season ID. Omit for the current squad |

### Response

Returns a list of squad members, each with:

```json
{
  "player_id": 123,
  "name": "Bukayo Saka",
  "position": "Attacker",
  "position_id": 27,
  "detailed_position": "Right Winger",
  "detailed_position_id": 153,
  "jersey_number": 7
}
```

### Example prompts

* *Get the current squad for Manchester City*
* *Show me Arsenal's squad - use team ID 42*
* *Who was in Liverpool's squad during the 2019/20 season?*
* *Search for "Barcelona" to get the team ID, then fetch their current squad*


---

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