ashby_list_applications
List job applications using date, status, stage, and source filters to answer hiring questions about applicant volume, pipeline stages, or application sources.
Instructions
List applications across all jobs with date, status, stage, and source filters.
Use this to answer operational questions like "How many people applied this week?", "Show me all candidates in Application Review", or "Who applied via the Chrome extension?" Date and status filtering happens server-side for efficiency. Stage and source filters are applied by the MCP server.
Response: items[] (application_id, candidate_id, candidate_name, candidate_email, status, current_stage, source, job_id, job_title, createdAt), has_more, next_cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return (1-100). Defaults to 25. | |
| cursor | No | Pagination cursor from a previous response. | |
| job_id | No | Filter to a specific job (UUID). | |
| source | No | Filter by source title (e.g. 'Applied', 'Ashby Chrome Extension'). Case-insensitive substring match. | |
| status | No | Filter by application status. Defaults to All. | All |
| stage_name | No | Filter by exact interview stage name (e.g. 'Work test', 'Application Review'). | |
| stage_type | No | Filter by interview stage type (e.g. Lead, PreInterviewScreen, Interview, Offer). | |
| created_after | No | ISO datetime — only applications created after this timestamp (e.g. 2024-01-01T00:00:00Z). | |
| created_before | No | ISO datetime — only applications created before this timestamp. Filtered client-side. |