sbir_agency_stats
Pack: sbir · Endpoint: https://gateway.pipeworx.io/sbir/mcp
Get SBIR/STTR award counts by agency. Specify agency (e.g., “DOD”, “NASA”, “NSF”) or omit to see all major agencies.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
agency | string | no | Specific agency to count, e.g. “DOW” (formerly DOD), “NASA”, “NSF”. Omit to cover all major agencies. Note SBIR publishes no total-count field, so a result at the page cap reports award_count_at_least rather than a total. |
Example call
Arguments
{
"agency": "DOW"
}
curl
curl -X POST https://gateway.pipeworx.io/sbir/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sbir_agency_stats","arguments":{"agency":"DOW"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sbir_agency_stats', {
"agency": "DOW"
});
More examples
{}
Response shape
Full JSON Schema
{
"type": "object",
"oneOf": [
{
"type": "object",
"properties": {
"agency": {
"type": "string",
"description": "Agency code"
},
"award_count": {
"type": "number",
"description": "Total award count for agency"
}
},
"required": [
"agency",
"award_count"
]
},
{
"type": "object",
"properties": {
"agencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"agency": {
"type": "string",
"description": "Agency code"
},
"award_count": {
"type": [
"number",
"null"
],
"description": "Total award count for agency"
},
"error": {
"type": "string",
"description": "Error message if retrieval failed"
}
},
"required": [
"agency"
]
}
}
},
"required": [
"agencies"
]
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sbir": {
"url": "https://gateway.pipeworx.io/sbir/mcp"
}
}
}
See Getting Started for client-specific install steps.