ashby_get_job

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ashby_get_job for the schema, then POST the same URL with its arguments for the data.

Get full job posting by ID. Returns description, requirements, hiring stage, and applicant count.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAshby API key
jobIdstringyesAshby job ID

Example call

Arguments

{
  "_apiKey": "your-ashby-api-key",
  "jobId": "job_67890"
}

curl

curl -X POST https://gateway.pipeworx.io/ashby/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ashby_get_job","arguments":{"_apiKey":"your-ashby-api-key","jobId":"job_67890"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ashby_get_job', {
  "_apiKey": "your-ashby-api-key",
  "jobId": "job_67890"
});

Response shape

FieldTypeDescription
idstringJob ID
titlestringJob title
descriptionstringFull job description
requirementsstringJob requirements
hiringStagestringCurrent hiring stage for this job
applicantCountnumberTotal number of applicants
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Job ID"
    },
    "title": {
      "type": "string",
      "description": "Job title"
    },
    "description": {
      "type": "string",
      "description": "Full job description"
    },
    "requirements": {
      "type": "string",
      "description": "Job requirements"
    },
    "hiringStage": {
      "type": "string",
      "description": "Current hiring stage for this job"
    },
    "applicantCount": {
      "type": "number",
      "description": "Total number of applicants"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026