get_standings
Pack: nhl · Endpoint: https://gateway.pipeworx.io/nhl/mcp
Check current NHL standings. Returns wins, losses, OT losses, points, goals for/against, and streak info for all teams.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/nhl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_standings","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_standings', {});
Response shape
Always returns: total, standings
| Field | Type | Description |
|---|---|---|
total | number | Total number of teams in standings |
standings | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of teams in standings"
},
"standings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": [
"string",
"null"
],
"description": "Team name"
},
"abbrev": {
"type": [
"string",
"null"
],
"description": "Team abbreviation"
},
"division": {
"type": [
"string",
"null"
],
"description": "Division name"
},
"conference": {
"type": [
"string",
"null"
],
"description": "Conference name"
},
"games_played": {
"type": [
"number",
"null"
],
"description": "Games played"
},
"wins": {
"type": [
"number",
"null"
],
"description": "Wins"
},
"losses": {
"type": [
"number",
"null"
],
"description": "Losses"
},
"ot_losses": {
"type": [
"number",
"null"
],
"description": "Overtime losses"
},
"points": {
"type": [
"number",
"null"
],
"description": "Standing points"
},
"goals_for": {
"type": [
"number",
"null"
],
"description": "Goals scored"
},
"goals_against": {
"type": [
"number",
"null"
],
"description": "Goals allowed"
},
"streak": {
"type": [
"string",
"null"
],
"description": "Current win/loss streak (e.g., W5, L2)"
}
}
}
}
},
"required": [
"total",
"standings"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nhl": {
"url": "https://gateway.pipeworx.io/nhl/mcp"
}
}
}
See Getting Started for client-specific install steps.