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

NameTypeRequiredDescription
company_namestringyesCompany name (e.g., “Lockheed Martin”, “Palantir”)
_apiKeystringnoSAM.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

FieldTypeDescription
analysisstringAnalysis type identifier
companystringCompany name queried
sam_registrationobject | nullSAM.gov entity registration data
federal_awardsobject | nullUSAspending award history results
sbir_sttr_awardsobject | nullSBIR/STTR award history results
recipient_profileobject | nullUSAspending 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.

Regenerated from source · build May 9, 2026