get_job

Pack: usajobs · Endpoint: https://gateway.pipeworx.io/usajobs/mcp

Fetch a single announcement by USAJOBS announcement number.

Parameters

NameTypeRequiredDescription
announcement_numberstringyesUSAJOBS announcement number (e.g. “AF-DHA-2024-12345”)

Example call

Arguments

{
  "announcement_number": "AF-DHA-2024-12345"
}

curl

curl -X POST https://gateway.pipeworx.io/usajobs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_job","arguments":{"announcement_number":"AF-DHA-2024-12345"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_job', {
  "announcement_number": "AF-DHA-2024-12345"
});

Response shape

FieldTypeDescription
SearchResultobjectSearch result metadata
JobDataarrayArray containing the matching job posting
Full JSON Schema
{
  "type": "object",
  "description": "Single job posting result from USAJOBS",
  "properties": {
    "SearchResult": {
      "type": "object",
      "description": "Search result metadata"
    },
    "JobData": {
      "type": "array",
      "description": "Array containing the matching job posting",
      "items": {
        "type": "object",
        "description": "Individual job posting with full details"
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "usajobs": {
      "url": "https://gateway.pipeworx.io/usajobs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026