insurer_denial_rates
Pack: insurance-denials · Endpoint: https://gateway.pipeworx.io/insurance-denials/mcp
Which health insurers deny the most claims — US marketplace issuers ranked by the share of in-network claims they denied, for plan year ${PLAN_YEAR}. Answers “what percentage of claims does my insurance company deny”, “which insurer denies the most”, “how often does
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | Two-letter US state code to filter by, e.g. “TX”, “FL”. Omit for all states. |
market | string | no | Which market: “medical” / “QHP” for medical plans, “dental” / “SADP” for standalone dental, “SHOP” for small-group. Omit for all three. |
order | string | no | ”highest” (default) ranks the biggest deniers first; “lowest” ranks the smallest. |
limit | number | no | How many issuers to return (default 20, max 200). |
Example call
Arguments
{
"market": "medical",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/insurance-denials/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"insurer_denial_rates","arguments":{"market":"medical","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('insurer_denial_rates', {
"market": "medical",
"limit": 5
});
More examples
{
"state": "TX",
"market": "medical"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"insurance-denials": {
"url": "https://gateway.pipeworx.io/insurance-denials/mcp"
}
}
}
See Getting Started for client-specific install steps.