Dod Contract Announcements

live News

DoD Contract Announcements MCP — the daily press-release feed of every US

4 tools
0ms auth
free tier 50 calls/day

Tools

dod_awards_recent

Most recent US Department of War (formerly Department of Defense) contract award announcements — Pentagon contracts today, this week, or over any recent window, newest first. Every contract of $7.5M o

No parameters required.

Try it
dod_awards_top

Ranks contractors or military services/agencies by total defense contract award value over a recent window — "who are the top defense contractors this month", "which service branch awarded the most th

No parameters required.

Try it
dod_awards_coverage

Reports what DoD/Pentagon contract announcement data is currently available: total row count, the earliest and latest announcement date on file, and a per-service breakdown of counts. Use to gauge cov

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/dod-contract-announcements/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dod-contract-announcements/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dod_awards_recent","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("dod_awards_recent", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("dod contract announcements mcp — the daily press-release feed of every us");