iCIMS Careers API
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@iCIMS Careers APIShow me the latest job openings at Microsoft"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
iCIMS API: Pull Live Job Postings From Any iCIMS Career Site
iCIMS does not hand out a public read API for job postings, so most teams end up writing a one-off parser per employer. This repo shows you the shortcut: a working Python example plus MCP install steps for the iCIMS Careers API on Apify.
Point it at a career site, get back structured jobs: title, requisition ID, employer, locations, employment type, posted and updated dates, salary when the employer publishes it, and the apply link. It reads both public iCIMS surfaces, the classic careers-{tenant}.icims.com portals and the modern iCIMS career sites that live on the employer's own domain, so you do not have to know which one an employer runs.
Get a free Apify API key here: https://apify.com?fpr=9n7kx3

Text walkthrough
The icims api you are looking for is this Actor. You give it one thing, a career site, either as a URL in startUrls or as a plain company name in companies, and it works out which iCIMS surface that employer is on before it fetches anything. Every live requisition comes back as one row: title, id (the employer's own req number), organization, locations_derived, employment_type, date_posted, date_updated, description_text, salary_raw, and apply_url. The field names deliberately match the common job-feed conventions, so rows drop into an existing pipeline without a mapping layer.
The part that saves real money is newerThan. Set it to 7d and the Actor filters on the site's own last-modified data before it opens any job page, so a daily poll of an employer with 400 open reqs costs you the handful that actually moved. Add includeDetails: false and you get a pure change feed: url, id, title, dates. That is exactly the shape behind the Track New iCIMS Job Postings Every Day recipe, which a recruiting team can run on a schedule and pipe into Slack.
Sites that fail are not silent. A dead tenant, an IP-restricted portal, or a domain that turns out not to be iCIMS at all comes back as a labelled error row with an error_code, so an automated job can tell "no new jobs" apart from "this employer moved off iCIMS".
Related MCP server: JobDataLake MCP Server
Quick start
git clone https://github.com/johnisanerd/Apify-iCIMS-Careers-API.git
cd Apify-iCIMS-Careers-API
uv sync
cp .env.example .envPaste your Apify token into .env, then:
uv run icims-api-example.pyThat first run pulls five jobs from one career site with text descriptions, which keeps it close to free. Every input in icims-api-example.py is annotated so you can widen it deliberately.
Recipes
Ready-made input sets, each one a live page on the Apify Store you can run without writing any code:
Recipe | What it does |
The starting point when you searched for iCIMS API documentation and found nothing public. | |
Change detection only. Cheap enough to run daily on a big employer. | |
Pass a watchlist of company names, skip the URL hunting. | |
One employer, full job detail, the plainest possible call. | |
Treat iCIMS like the read API it does not ship, from your own backend. |
Schedule tip: any of these can run on a timer. In the Apify Console open the Actor, click Schedules, and add a daily or weekly cron. Combine a schedule with newerThan: "24h" and includeDetails: false and you have a job-change feed that costs a fraction of a full crawl.
Input parameters
Parameter | Type | Default | What it does |
| array of | Rambus career site | Portal root, sitemap URL, search URL, single job URL, or a modern career site on the employer's domain. |
| array of strings | empty | Company names. Resolved to iCIMS tenants for you. |
| string | not set | ISO date, full timestamp, or a window like |
| string |
|
|
| boolean |
|
|
| string |
|
|
| array of strings | empty | Title filter. Applied server side where the career site supports it. |
| integer |
| Cap per career site. |
| integer |
| Global cap across all sites. |
| integer |
| Parallel detail requests, maximum 10. |
| object | off | Optional. Only needed for the small number of tenants that restrict traffic by network. |
Output fields
Each row carries result_type, either job or error.
url, id, title, organization, organization_url, description_text, description_html, description_markdown, employment_type, locations_derived, remote_derived, date_posted, date_updated, date_validthrough, salary_raw, category, additional_fields, apply_url, latitude, longitude, tenant, source, source_type, source_surface, source_domain, source_url, scraped_at, and on error rows error_code and error_message.
The dataset ships two views. Overview is the full table. Changes is the monitoring view: url, date_updated, date_posted, title, which is the only shape you need when you are diffing runs.
Install in Claude Cowork Desktop

Cowork is the desktop app's automation mode. To give it the iCIMS API as a tool, add the Apify MCP server as a connector.
Open the Claude desktop app and go to Settings > Connectors (or Settings > Developer > Edit Config to edit
claude_desktop_config.jsondirectly).macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the Apify MCP server, preloaded with only this Actor:
{
"mcpServers": {
"apify": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api"
]
}
}
}Restart the app. When Cowork first calls the tool, complete the OAuth prompt in your browser, or add your Apify API token in the connector settings to skip OAuth.
In a Cowork chat, confirm the tool is available and ask it to run the iCIMS API.
Download the desktop app and start a free trial: https://claude.ai/referral/uIlpa7nPLg More help: https://docs.apify.com/platform/integrations/claude-desktop
Install in Claude Code

Claude Code is the command-line tool. Add the Actor's MCP server with one command:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api"To use a token instead of browser OAuth:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api" \
--header "Authorization: Bearer YOUR_APIFY_TOKEN"Then verify with claude mcp list, or run /mcp inside a session. Ask Claude Code to call the iCIMS API.
Try Claude Code free: https://claude.ai/referral/uIlpa7nPLg Claude Code MCP docs: https://code.claude.com/docs/en/mcp
Install in Claude (website)

On claude.ai you add Apify as a connector, then enable just this Actor's tool.
Go to Settings > Connectors > Browse connectors and search for Apify MCP server. Install it (enable or update if prompted).
When connecting, authenticate with your Apify API token, and enable the tool
johnvc/icims-careers-api.In any chat, open + > Connectors and turn on Apify.
Alternatively, choose Add custom connector and paste the full MCP URL
https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api, using OAuth when prompted.Ask Claude to run the iCIMS API.
Open Claude on the web: https://claude.ai
Install in Cursor

Cursor reads MCP servers from a project file at .cursor/mcp.json.
In your project, create
.cursor/mcp.json:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api"
}
}
}If you prefer token auth over browser OAuth, add a header:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-api",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}Open Cursor > Settings > MCP and confirm the apify server is connected (green dot).
In Composer or Chat, ask Cursor to call the iCIMS API.
New to Cursor? Get it here: https://cursor.com/referral?code=XQP4VBLI3NNX
Install in ChatGPT

ChatGPT connects to the Apify MCP server through Developer mode (available on ChatGPT Pro, Plus, Business, Enterprise, and Education plans).
Click your profile icon, then go to Settings > Apps. If you do not see a Create app button, open Advanced settings and enable Developer mode.
Click Create app and fill out the form:
Name: Apify
MCP Server URL:
https://mcp.apify.com/?tools=actors,docs,johnvc/icims-careers-apiAuthentication: OAuth
Click Create and authorize the connection with Apify.
To use the app in a conversation, click + in the chat, choose Developer mode, and select Apify.
More help: https://docs.apify.com/platform/integrations/mcp
FAQ
Is there an official iCIMS API for job postings? Not a public one you can sign up for. iCIMS sells integration access to its own customers, so if you want postings from an employer you do not work for, the public career site is the surface you have. This Actor reads that surface and hands you the same structured fields an API would.
Does it work on both kinds of iCIMS site?
Yes. Classic portals on icims.com and modern iCIMS career sites hosted on the employer's own domain are both supported. The Actor probes the domain and picks the right path, so you can pass either and not think about it.
How do I scrape job postings without hammering the site?
Use newerThan. On the classic portal surface the filter is applied to the site's own change data before any job page is opened, so an unchanged requisition is never fetched. Add includeDetails: false and a run touches one page per site.
Can I use this as an ATS API inside my own product? That is what most people do with it. Call it from your backend with the Apify client, or from n8n, or over MCP from an agent. The output field names follow common job-feed conventions, so a normalizer you already have will usually ingest it unchanged.
What happens when a career site is dead or restricted?
You get a row with result_type: "error" and an error_code such as tenant_not_found, ip_gated, or not_icims, rather than a crashed run. A watchlist job can act on that: the employer moved off iCIMS, or the tenant retired.
How much does a run cost? Pricing is on the Actor page and bills per delivered job row, so a monitoring run that finds two changed jobs costs two rows, not a full crawl. Check the live pricing there rather than trusting a number copied into a README.
Which fields can I count on?
url, id, title, organization, and date_updated are present on every job row. Salary, category, and coordinates depend on what the employer publishes, so they can be null.
People also search for
icims api, icims ats, icims jobs, ats api, job data api, scrape job postings, applicant tracking system api, job posting api, companies that use icims, icims api documentation, icims mcp server, track new icims job postings, career site job data, job listings api
n8n integration
Available as an n8n community node, n8n-nodes-icims-careers-api. In n8n: Settings, Community Nodes, install n8n-nodes-icims-careers-api, then use it in any workflow (it also works as an AI Agent tool).
More
Actor on the Apify Store: https://apify.com/johnvc/icims-careers-api?fpr=9n7kx3
Free Apify account: https://apify.com?fpr=9n7kx3
Apify Python client docs: https://docs.apify.com/api/client/python/
Apify MCP docs: https://docs.apify.com/platform/integrations/mcp
Last Updated: 2026.08.17
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables users to search LinkedIn's public job listings with advanced filters like location, salary, and experience level. It allows MCP-compatible clients to retrieve real-time job opportunities without requiring LinkedIn authentication or API keys.12MIT
- AlicenseAqualityBmaintenanceEnables searching over 1 million enriched job listings from 20,000+ companies directly from MCP-compatible AI tools. Provides tools for job search, company profiles, and AI-powered similar job recommendations with real-time data updates.4812MIT
- Alicense-qualityAmaintenanceEnables job search and scraping across multiple job boards (LinkedIn, Indeed, Glassdoor, etc.) with advanced filtering, directly from Claude Desktop or other MCP clients.5MIT
- Flicense-qualityCmaintenanceEnables AI agents to pull live job listings from major ATS platforms (Greenhouse, Lever, Ashby, Workable), Hacker News hiring threads, and detect hiring signals on company career pages.
Related MCP Connectors
Live job postings from 30+ ATS feeds and job boards, one schema. Live results need a Bearer key.
Search a live index of millions of open jobs from employer career sites and 100+ ATS platforms.
Google Jobs listings with direct apply links via the Apify Google Jobs Scraper, hosted MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnisanerd/Apify-iCIMS-Careers-API'
If you have feedback or need assistance with the MCP directory API, please join our Discord server