station_info

Pack: cdec-ca · Endpoint: https://gateway.pipeworx.io/cdec-ca/mcp

Station metadata.

Parameters

NameTypeRequiredDescription
station_idstringyes

Example call

Arguments

{
  "station_id": "SHA"
}

curl

curl -X POST https://gateway.pipeworx.io/cdec-ca/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"station_info","arguments":{"station_id":"SHA"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('station_info', {
  "station_id": "SHA"
});

More examples

{
  "station_id": "ORO"
}

Response shape

FieldTypeDescription
formatstringIndicates response is plain text (non-JSON)
bodystringRaw text response from API
Full JSON Schema
{
  "type": "object",
  "description": "Response from CDEC API containing station metadata or raw text",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "text"
      ],
      "description": "Indicates response is plain text (non-JSON)"
    },
    "body": {
      "type": "string",
      "description": "Raw text response from API"
    }
  },
  "additionalProperties": true
}

Connect

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

{
  "mcpServers": {
    "cdec-ca": {
      "url": "https://gateway.pipeworx.io/cdec-ca/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026