vaers_coverage
Pack: vaers · Endpoint: https://gateway.pipeworx.io/vaers/mcp
What this VAERS pack currently holds: total unique reports, the year range covered, how many distinct vaccine types and manufacturers, and when the seed was last (re)loaded — refresh is a manual re-download of the CDC/FDA data files, not a live feed, so check this before relying on recency. Also returns the top 5 vaccines by report volume as a starting point for vaers_events_by_vaccine.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/vaers/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"vaers_coverage","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vaers_coverage', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"vaers": {
"url": "https://gateway.pipeworx.io/vaers/mcp"
}
}
}
See Getting Started for client-specific install steps.