ca_procurement_department

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

Profile a California STATE department/agency’s procurement spend from the SCPRS purchase-order data on data.ca.gov: total dollars, purchase-order count, top suppliers (vendors) it buys from, top commodity categories it spends on, and a by-fiscal-year breakdown. Matches the department name as a case-insensitive substring. Answers “what does the CA Department of Justice buy and from whom”, “which agencies spend the most”. This is CALIFORNIA STATE data (not federal).

Parameters

NameTypeRequiredDescription
departmentstringyesState department/agency name (case-insensitive substring), e.g. “Justice”, “Health Care Services”, “Transportation”.
fiscal_yearstringnoOptional: restrict to one fiscal year, e.g. “2014-2015”.

Example call

Arguments

{
  "department": "Justice"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ca_procurement_department', {
  "department": "Justice"
});

More examples

{
  "department": "Transportation",
  "fiscal_year": "2014-2015"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026