sbir_company_awards
Pack: sbir · Endpoint: https://gateway.pipeworx.io/sbir/mcp
Get complete SBIR/STTR award history for a company. Returns all awards with amounts, agencies, topics, and funding phases.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company | string | yes | Company name to search for |
limit | number | no | Number of results to return (default 50) |
Example call
Arguments
{
"company": "Acme Technologies Inc.",
"limit": 50
}
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_company_awards","arguments":{"company":"Acme Technologies Inc.","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sbir_company_awards', {
"company": "Acme Technologies Inc.",
"limit": 50
});
Response shape
Always returns: company, count, awards
| Field | Type | Description |
|---|---|---|
company | string | Company name searched |
count | number | Number of awards returned |
awards | array |
Full JSON Schema
{
"type": "object",
"properties": {
"company": {
"type": "string",
"description": "Company name searched"
},
"count": {
"type": "number",
"description": "Number of awards returned"
},
"awards": {
"type": "array",
"items": {
"type": "object",
"properties": {
"company": {
"type": "string",
"description": "Company name"
},
"award_amount": {
"type": [
"number",
"null"
],
"description": "Award amount in dollars"
},
"agency": {
"type": "string",
"description": "Funding agency code"
},
"branch": {
"type": [
"string",
"null"
],
"description": "Agency branch or division"
},
"topic_code": {
"type": [
"string",
"null"
],
"description": "Topic or program code"
},
"award_title": {
"type": "string",
"description": "Title of the award"
},
"abstract": {
"type": [
"string",
"null"
],
"description": "Award abstract or summary"
},
"award_year": {
"type": [
"number",
"string",
"null"
],
"description": "Year award was made"
},
"phase": {
"type": [
"string",
"null"
],
"description": "Funding phase"
},
"program": {
"type": [
"string",
"null"
],
"description": "SBIR/STTR program type"
},
"award_id": {
"type": [
"string",
"null"
],
"description": "Unique award identifier"
},
"state": {
"type": [
"string",
"null"
],
"description": "2-letter state code"
},
"city": {
"type": [
"string",
"null"
],
"description": "City location"
}
},
"required": [
"company",
"agency",
"award_title"
]
}
}
},
"required": [
"company",
"count",
"awards"
]
}
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.