govcon_contractor_profile
Pack: govcon-intel · Endpoint: https://gateway.pipeworx.io/govcon-intel/mcp
Vet a government contractor’s registration, federal awards, and spending history. Returns certifications, past performance, award amounts, and contract count. Use when assessing vendor credibility or experience.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company_name | string | yes | Company name (e.g., “Lockheed Martin”, “Palantir”) |
_apiKey | string | no | SAM.gov API key (optional) |
Example call
Arguments
{
"company_name": "Lockheed Martin",
"_apiKey": "your-govcon-intel-api-key"
}
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_contractor_profile","arguments":{"company_name":"Lockheed Martin","_apiKey":"your-govcon-intel-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('govcon_contractor_profile', {
"company_name": "Lockheed Martin",
"_apiKey": "your-govcon-intel-api-key"
});
More examples
{
"company_name": "Palantir Technologies"
}
Response shape
Always returns: analysis, company, sam_registration, federal_awards, sbir_sttr_awards, recipient_profile
| Field | Type | Description |
|---|---|---|
analysis | string | Analysis type identifier |
company | string | Company name queried |
sam_registration | object | null | SAM.gov entity registration data |
federal_awards | object | null | USAspending award history results |
sbir_sttr_awards | object | null | SBIR/STTR award history results |
recipient_profile | object | null | USAspending recipient profile data |
Full JSON Schema
{
"type": "object",
"properties": {
"analysis": {
"type": "string",
"enum": [
"contractor_profile"
],
"description": "Analysis type identifier"
},
"company": {
"type": "string",
"description": "Company name queried"
},
"sam_registration": {
"type": [
"object",
"null"
],
"description": "SAM.gov entity registration data"
},
"federal_awards": {
"type": [
"object",
"null"
],
"description": "USAspending award history results"
},
"sbir_sttr_awards": {
"type": [
"object",
"null"
],
"description": "SBIR/STTR award history results"
},
"recipient_profile": {
"type": [
"object",
"null"
],
"description": "USAspending recipient profile data"
}
},
"required": [
"analysis",
"company",
"sam_registration",
"federal_awards",
"sbir_sttr_awards",
"recipient_profile"
]
}
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.