medicaid_enrollment_operations

Pack: medicaid-intelligence · Endpoint: https://gateway.pipeworx.io/medicaid-intelligence/mcp

Show monthly Medicaid and CHIP enrollment and application-processing indicators for one state. Values are preliminary or updated state reports and may include footnotes or missing periods.

Parameters

NameTypeRequiredDescription
statestringyesUS state, as a two-letter code (“CA”) or a full name (“California”) — both are accepted.
from_monthstringnoYYYYMM.
to_monthstringnoYYYYMM.

Example call

Arguments

{
  "state": "CA",
  "from_month": "202401",
  "to_month": "202412"
}

curl

curl -X POST https://gateway.pipeworx.io/medicaid-intelligence/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"medicaid_enrollment_operations","arguments":{"state":"CA","from_month":"202401","to_month":"202412"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('medicaid_enrollment_operations', {
  "state": "CA",
  "from_month": "202401",
  "to_month": "202412"
});

Connect

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

{
  "mcpServers": {
    "medicaid-intelligence": {
      "url": "https://gateway.pipeworx.io/medicaid-intelligence/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 31, 2026