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

NameTypeRequiredDescription
statestringyesFull state name.
yearnumberno
parent_organizationstringno
limitnumberno
offsetnumberno

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.

Regenerated from source · build July 31, 2026