npi_organization
Pack: clinicaltables · Endpoint: https://gateway.pipeworx.io/clinicaltables/mcp
“Find a hospital / clinic by name” / “look up NPI for [organization]” / “what’s [Mayo Clinic]‘s NPI” / “verify a healthcare facility” — search the NPPES NPI registry for organizational providers (~1.8M entries) — hospitals, clinics, group practices. Same shape as npi_individual. terms can be org name, NPI, or city.
Example call
Arguments
{
"terms": "mayo clinic",
"count": 3
}
curl
curl -X POST https://gateway.pipeworx.io/clinicaltables/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"npi_organization","arguments":{"terms":"mayo clinic","count":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('npi_organization', {
"terms": "mayo clinic",
"count": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clinicaltables": {
"url": "https://gateway.pipeworx.io/clinicaltables/mcp"
}
}
}
See Getting Started for client-specific install steps.