ashby_get_job
Pack: ashby · Endpoint: https://gateway.pipeworx.io/ashby/mcp
Get full job posting by ID. Returns description, requirements, hiring stage, and applicant count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Ashby API key |
jobId | string | yes | Ashby 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
| Field | Type | Description |
|---|---|---|
id | string | Job ID |
title | string | Job title |
description | string | Full job description |
requirements | string | Job requirements |
hiringStage | string | Current hiring stage for this job |
applicantCount | number | Total 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.