quiver_gov_contracts
Pack: quiver · Endpoint: https://gateway.pipeworx.io/quiver/mcp
Government contracts awarded (by ticker) — US federal contract awards to public companies, with award amount, agency, and date. Pass a ticker for that company’s contract history (“government contracts for LMT”). Example: quiver_gov_contracts({ ticker: “LMT”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | no | Optional stock ticker to filter to one company, e.g. “LMT”. Omit for the latest cross-market feed. |
_apiKey | string | yes | Quiver Quantitative API key |
Example call
Arguments
{
"ticker": "LMT",
"_apiKey": "your-quiver-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/quiver/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quiver_gov_contracts","arguments":{"ticker":"LMT","_apiKey":"your-quiver-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quiver_gov_contracts', {
"ticker": "LMT",
"_apiKey": "your-quiver-api-key"
});
More examples
{
"_apiKey": "your-quiver-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"quiver": {
"url": "https://gateway.pipeworx.io/quiver/mcp"
}
}
}
See Getting Started for client-specific install steps.