govcon_agency_landscape
Pack: govcon-intel · Endpoint: https://gateway.pipeworx.io/govcon-intel/mcp
Get contracting activity and market insights for a federal agency (e.g., ‘Department of Defense’, ‘NASA’). Returns spending trends, recent awards, SBIR stats, and top contractors by volume.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
agency | string | yes | Federal agency name |
Example call
Arguments
{
"agency": "Department of Defense"
}
curl
curl -X POST https://gateway.pipeworx.io/govcon-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"govcon_agency_landscape","arguments":{"agency":"Department of Defense"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('govcon_agency_landscape', {
"agency": "Department of Defense"
});
More examples
{
"agency": "NASA"
}
Response shape
Always returns: analysis, agency, spending_overview, recent_awards, sbir_program, spending_trends
| Field | Type | Description |
|---|---|---|
analysis | string | Analysis type identifier |
agency | string | Federal agency name queried |
spending_overview | object | null | Agency spending breakdown by category |
recent_awards | object | null | Recent award contracts from this agency |
sbir_program | object | null | SBIR/STTR program statistics for agency |
spending_trends | object | null | Historical spending trends for agency |
Full JSON Schema
{
"type": "object",
"properties": {
"analysis": {
"type": "string",
"enum": [
"agency_landscape"
],
"description": "Analysis type identifier"
},
"agency": {
"type": "string",
"description": "Federal agency name queried"
},
"spending_overview": {
"type": [
"object",
"null"
],
"description": "Agency spending breakdown by category"
},
"recent_awards": {
"type": [
"object",
"null"
],
"description": "Recent award contracts from this agency"
},
"sbir_program": {
"type": [
"object",
"null"
],
"description": "SBIR/STTR program statistics for agency"
},
"spending_trends": {
"type": [
"object",
"null"
],
"description": "Historical spending trends for agency"
}
},
"required": [
"analysis",
"agency",
"spending_overview",
"recent_awards",
"sbir_program",
"spending_trends"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"govcon-intel": {
"url": "https://gateway.pipeworx.io/govcon-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.