get_team

Pack: football-data · Endpoint: https://gateway.pipeworx.io/football-data/mcp

Team detail by ID — current squad, coach, competitions, venue.

Parameters

NameTypeRequiredDescription
team_idnumberyesfootball-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

FieldTypeDescription
idnumber | nullTeam ID
namestring | nullTeam full name
short_namestring | nullTeam short name
tlastring | nullThree-letter acronym
countrystring | nullCountry name
addressstring | nullTeam address
websitestring | nullOfficial website URL
foundednumber | nullYear founded
colorsstring | nullClub colors description
venuestring | nullStadium/venue name
coachstring | nullCoach name
coach_nationalitystring | nullCoach nationality
creststring | nullTeam crest/logo URL
squadarray
running_competitionsarrayList 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.

Regenerated from source · build July 6, 2026