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

NameTypeRequiredDescription
agencystringnoSpecific agency to get count for (e.g., “DOD”, “NASA”). Omit to get counts for all major agencies.

Example call

Arguments

{
  "agency": "DOD"
}

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":"DOD"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('sbir_agency_stats', {
  "agency": "DOD"
});

More examples

{}

Response shape

Full JSON Schema
{
  "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.

Regenerated from source · build May 9, 2026