ashby_list_applications
Pack: ashby · Endpoint: https://gateway.pipeworx.io/ashby/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ashby_list_applications for the schema, then POST the same URL with its arguments for the data.
Search job applications across positions. Returns candidate name, applied job, application stage, and submission date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Ashby API key |
cursor | string | no | Pagination cursor from a previous response |
per_page | number | no | Number 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
| Field | Type | Description |
|---|---|---|
results | array | List of applications |
nextCursor | string | Pagination 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.