search_teams

Pack: thesportsdb · Endpoint: https://gateway.pipeworx.io/thesportsdb/mcp

Search TheSportsDB for sports teams by name. Returns team id (use with get_last_events/get_next_events), sport, league, country, stadium, and description.

Parameters

NameTypeRequiredDescription
querystringyes

Example call

Arguments

{
  "query": "Manchester United"
}

curl

curl -X POST https://gateway.pipeworx.io/thesportsdb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_teams","arguments":{"query":"Manchester United"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_teams', {
  "query": "Manchester United"
});

More examples

{
  "query": "Lakers"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from TheSportsDB team search endpoint"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "thesportsdb": {
      "url": "https://gateway.pipeworx.io/thesportsdb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026