get_team
Pack: football-data · Endpoint: https://gateway.pipeworx.io/football-data/mcp
Team detail by ID — current squad, coach, competitions, venue.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
team_id | number | yes | football-data.org numeric team ID |
Example call
Arguments
{
"team_id": 64
}
curl
curl -X POST https://gateway.pipeworx.io/football-data/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_team","arguments":{"team_id":64}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_team', {
"team_id": 64
});
Response shape
Always returns: id, name, squad, running_competitions
| Field | Type | Description |
|---|---|---|
id | number | null | Team ID |
name | string | null | Team full name |
short_name | string | null | Team short name |
tla | string | null | Three-letter acronym |
country | string | null | Country name |
address | string | null | Team address |
website | string | null | Official website URL |
founded | number | null | Year founded |
colors | string | null | Club colors description |
venue | string | null | Stadium/venue name |
coach | string | null | Coach name |
coach_nationality | string | null | Coach nationality |
crest | string | null | Team crest/logo URL |
squad | array | |
running_competitions | array | List of competition names team is currently in |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": [
"number",
"null"
],
"description": "Team ID"
},
"name": {
"type": [
"string",
"null"
],
"description": "Team full name"
},
"short_name": {
"type": [
"string",
"null"
],
"description": "Team short name"
},
"tla": {
"type": [
"string",
"null"
],
"description": "Three-letter acronym"
},
"country": {
"type": [
"string",
"null"
],
"description": "Country name"
},
"address": {
"type": [
"string",
"null"
],
"description": "Team address"
},
"website": {
"type": [
"string",
"null"
],
"description": "Official website URL"
},
"founded": {
"type": [
"number",
"null"
],
"description": "Year founded"
},
"colors": {
"type": [
"string",
"null"
],
"description": "Club colors description"
},
"venue": {
"type": [
"string",
"null"
],
"description": "Stadium/venue name"
},
"coach": {
"type": [
"string",
"null"
],
"description": "Coach name"
},
"coach_nationality": {
"type": [
"string",
"null"
],
"description": "Coach nationality"
},
"crest": {
"type": [
"string",
"null"
],
"description": "Team crest/logo URL"
},
"squad": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": [
"number",
"null"
],
"description": "Player ID"
},
"name": {
"type": [
"string",
"null"
],
"description": "Player name"
},
"position": {
"type": [
"string",
"null"
],
"description": "Player position"
},
"dob": {
"type": [
"string",
"null"
],
"description": "Date of birth (YYYY-MM-DD)"
},
"nationality": {
"type": [
"string",
"null"
],
"description": "Player nationality"
}
}
}
},
"running_competitions": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of competition names team is currently in"
}
},
"required": [
"id",
"name",
"squad",
"running_competitions"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"football-data": {
"url": "https://gateway.pipeworx.io/football-data/mcp"
}
}
}
See Getting Started for client-specific install steps.