insurer_denial_coverage
Pack: insurance-denials · Endpoint: https://gateway.pipeworx.io/insurance-denials/mcp
What this data covers before you rely on it: the plan year, how many issuers and states are present, which states are included, and the counts of issuers whose denial or appeal figures CMS suppressed. Use to check whether a state or insurer is in scope at all, and to tell “we hold no data for this state” apart from “this state’s insurers deny nothing” — the CMS Transparency in Coverage file covers HealthCare.gov states only.
Example call
Arguments
{}
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_coverage","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('insurer_denial_coverage', {});
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.