Government Data MCP Server avatar

Government Data MCP Server

Pricing

Pay per usage

Go to Apify Store
Government Data MCP Server

Government Data MCP Server

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Fortuitous Pirate

Fortuitous Pirate

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

16 hours ago

Last modified

Categories

Share

Government Data MCP

MCP-compatible Apify actor for searching US government data sources. Designed for AI agent access via Apify's MCP endpoint.

Data Sources

SourceDescriptionAPI Key
SAM.govFederal contract opportunitiesOptional (DEMO_KEY available)
USAJOBSFederal job listingsRequired
Regulations.govFederal regulatory documentsOptional (DEMO_KEY available)

Usage

MCP Access (for AI agents)

Configure your AI client with:

https://mcp.apify.com?tools=fortuitous_pirate/gov-data-mcp

Example Queries

Search for cybersecurity contracts:

{
"action": "sam_contracts",
"keywords": "cybersecurity",
"naicsCode": "541512",
"limit": 25
}

Find software engineer jobs:

{
"action": "usajobs",
"keywords": "software engineer",
"location": "Washington, DC",
"salaryMin": 100000,
"limit": 25
}

Search AI regulations:

{
"action": "regulations",
"keywords": "artificial intelligence",
"agency": "DOD",
"documentType": "proposed_rule",
"limit": 25
}

API Keys

SAM.gov

USAJOBS

Regulations.gov

Pay-Per-Event Pricing

EventPriceDescription
api-call$0.005Per API call
result-returned$0.001Per result

Example: 25 results = $0.005 + (25 × $0.001) = $0.03

Local Testing

cd /home/peteylinux/Projects/Apify/scrapers/gov-data-mcp
npm install
# Test SAM.gov (no key needed for basic access)
echo '{"action": "sam_contracts", "keywords": "software", "limit": 5}' > storage/key_value_stores/default/INPUT.json
npm start
# Check output
cat storage/datasets/default/*.json | jq '.[0]'

Output Fields

SAM.gov Contracts

  • id, title, type, status
  • agency, postedDate, responseDeadline
  • naicsCode, setAside, placeOfPerformance
  • url, pointOfContact

USAJOBS Listings

  • id, title, organization, department
  • location, salaryMin, salaryMax, salaryType
  • grade, schedule, openDate, closeDate
  • url, qualifications

Regulations.gov Documents

  • id, documentId, title, documentType
  • agency, postedDate, commentStartDate, commentEndDate
  • docketId, url, summary

Deploy to Apify

$apify push