medicaid_managed_care_summary
Pack: medicaid-intelligence · Endpoint: https://gateway.pipeworx.io/medicaid-intelligence/mcp
Show annual state Medicaid enrollment and enrollment in any or comprehensive managed care. Counts are state-reported program enrollment, not covered lives attributable to a particular insurer.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | US state, as a two-letter code (“CA”) or a full name (“California”). Omit for national totals. |
from_year | number | no | |
to_year | number | no |
Example call
Arguments
{
"state": "California",
"from_year": 2020,
"to_year": 2024
}
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_managed_care_summary","arguments":{"state":"California","from_year":2020,"to_year":2024}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicaid_managed_care_summary', {
"state": "California",
"from_year": 2020,
"to_year": 2024
});
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.