ashby_list_jobs

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

Search open positions. Filter by status (open, closed, draft, archived). Returns job title, department, and posting details.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAshby API key
statusstringnoFilter by job status: Open, Closed, Draft, Archived

Example call

Arguments

{
  "_apiKey": "your-ashby-api-key"
}

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_list_jobs","arguments":{"_apiKey":"your-ashby-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "_apiKey": "your-ashby-api-key",
  "status": "Open"
}

Response shape

FieldTypeDescription
resultsarrayList of job postings
Full JSON Schema
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "description": "List of job postings",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Job ID"
          },
          "title": {
            "type": "string",
            "description": "Job title"
          },
          "department": {
            "type": "string",
            "description": "Department for this role"
          },
          "status": {
            "type": "string",
            "description": "Job status (Open, Closed, Draft, Archived)"
          }
        }
      }
    }
  }
}

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 May 9, 2026