list_pay_grades

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

Return the USAJOBS reference list of pay plan codes (GS, FW, ES, etc.) and their descriptions; use pay plan codes with the pay_grade_low/pay_grade_high search filters.

Example call

Arguments

{}

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":"list_pay_grades","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_pay_grades', {});

Response shape

FieldTypeDescription
CodearrayList of pay grade codes
Full JSON Schema
{
  "type": "object",
  "description": "Pay grade/plan reference codes",
  "properties": {
    "Code": {
      "type": "array",
      "description": "List of pay grade codes",
      "items": {
        "type": "object",
        "properties": {
          "CodeName": {
            "type": "string",
            "description": "Pay grade name"
          },
          "CodeValue": {
            "type": "string",
            "description": "Pay grade code (GS, FW, etc.)"
          }
        }
      }
    }
  }
}

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