medicare_article_code_profile
Pack: medicare-coverage · Endpoint: https://gateway.pipeworx.io/medicare-coverage/mcp
Retrieve one CMS Medicare Coverage Article with its CPT/HCPCS codes and contractor records. Licensed AMA/ADA/AHA content requires a caller-provided CMS license token. Code inclusion describes billing guidance, not guaranteed coverage or payment.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
article_id | string | yes | CMS article ID, with or without A prefix. |
version | number | no | |
_licenseToken | string | yes | CMS license-agreement bearer token. |
limit | number | no | Code rows (1-200, default 100). |
Example call
Arguments
{
"article_id": "A59045",
"_licenseToken": "CMS_LICENSE_TOKEN",
"limit": 100
}
curl
curl -X POST https://gateway.pipeworx.io/medicare-coverage/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"medicare_article_code_profile","arguments":{"article_id":"A59045","_licenseToken":"CMS_LICENSE_TOKEN","limit":100}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicare_article_code_profile', {
"article_id": "A59045",
"_licenseToken": "CMS_LICENSE_TOKEN",
"limit": 100
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"medicare-coverage": {
"url": "https://gateway.pipeworx.io/medicare-coverage/mcp"
}
}
}
See Getting Started for client-specific install steps.