ashby_list_applications

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

Search job applications across positions. Returns candidate name, applied job, application stage, and submission date.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAshby API key
cursorstringnoPagination cursor from a previous response
per_pagenumbernoNumber of applications per page (default 50)

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_applications","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_applications', {
  "_apiKey": "your-ashby-api-key"
});

More examples

{
  "_apiKey": "your-ashby-api-key",
  "per_page": 100
}

Response shape

FieldTypeDescription
resultsarrayList of applications
nextCursorstringPagination cursor for next page
Full JSON Schema
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "description": "List of applications",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Application ID"
          },
          "candidateName": {
            "type": "string",
            "description": "Name of the applying candidate"
          },
          "jobId": {
            "type": "string",
            "description": "Job ID applied for"
          },
          "jobTitle": {
            "type": "string",
            "description": "Title of the job applied for"
          },
          "stage": {
            "type": "string",
            "description": "Current application stage"
          },
          "submittedAt": {
            "type": "string",
            "description": "ISO 8601 timestamp of application submission"
          }
        }
      }
    },
    "nextCursor": {
      "type": "string",
      "description": "Pagination cursor for next page"
    }
  }
}

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