medicaid_monthly_managed_care
Pack: medicaid-intelligence · Endpoint: https://gateway.pipeworx.io/medicaid-intelligence/mcp
Show monthly Medicaid/CHIP enrollment for one state and managed-care participation category. Data-quality flags and confidentiality suppression are preserved.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | yes | US state, as a two-letter code (“CA”) or a full name (“California”) — both are accepted. |
participation | string | yes | Exact CMS category, e.g. “Comprehensive managed care”. |
from_month | string | no | YYYYMM. |
to_month | string | no | YYYYMM. |
Example call
Arguments
{
"state": "California",
"participation": "Comprehensive managed care",
"from_month": "202201",
"to_month": "202212"
}
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_monthly_managed_care","arguments":{"state":"California","participation":"Comprehensive managed care","from_month":"202201","to_month":"202212"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicaid_monthly_managed_care', {
"state": "California",
"participation": "Comprehensive managed care",
"from_month": "202201",
"to_month": "202212"
});
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.