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

NameTypeRequiredDescription
award_idstringyesThe 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

FieldTypeDescription
companystringCompany name
award_amountnumber | nullAward amount in dollars
agencystringFunding agency code
branchstring | nullAgency branch or division
topic_codestring | nullTopic or program code
award_titlestringTitle of the award
abstractstring | nullAward abstract or summary
award_yearnumber | string | nullYear award was made
phasestring | nullFunding phase
programstring | nullSBIR/STTR program type
award_idstring | nullUnique award identifier
statestring | null2-letter state code
citystring | nullCity 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.

Regenerated from source · build May 9, 2026