sbir_get_award
Pack: sbir · Endpoint: https://gateway.pipeworx.io/sbir/mcp
Get full details for a specific SBIR/STTR award by ID. Returns company, award amount, agency, abstract, phase, and metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
award_id | string | yes | The unique award ID |
Example call
Arguments
{
"award_id": "2024-DOD-SB241-001"
}
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_get_award","arguments":{"award_id":"2024-DOD-SB241-001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sbir_get_award', {
"award_id": "2024-DOD-SB241-001"
});
Response shape
Always returns: company, agency, award_title
| Field | Type | Description |
|---|---|---|
company | string | Company name |
award_amount | number | null | Award amount in dollars |
agency | string | Funding agency code |
branch | string | null | Agency branch or division |
topic_code | string | null | Topic or program code |
award_title | string | Title of the award |
abstract | string | null | Award abstract or summary |
award_year | number | string | null | Year award was made |
phase | string | null | Funding phase |
program | string | null | SBIR/STTR program type |
award_id | string | null | Unique award identifier |
state | string | null | 2-letter state code |
city | string | null | City location |
Full JSON Schema
{
"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"
]
}
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.