medicaid_plan_market
Pack: medicaid-intelligence · Endpoint: https://gateway.pipeworx.io/medicaid-intelligence/mcp
Return a bounded API-order sample of Medicaid managed-care plan/program rows by state and optional year, with the authoritative matching-row count. Zero may represent confidentiality suppression in this source.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | yes | Full state name. |
year | number | no | |
parent_organization | string | no | |
limit | number | no | |
offset | number | no |
Example call
Arguments
{
"state": "California",
"year": 2024,
"limit": 25
}
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_plan_market","arguments":{"state":"California","year":2024,"limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicaid_plan_market', {
"state": "California",
"year": 2024,
"limit": 25
});
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.