CATS MCP Server
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., "@CATS MCP Serverfind candidates with Python experience in San Francisco"
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.
CATS MCP Server
A universal MCP adapter for the CATS (CatsOne) API v3.
Comprehensive, atomic coverage of the CATS API exposed to any MCP-compatible client - Claude, ChatGPT, Codex, Mastra, Google ADK, or your own orchestrator.
For the current inventory see docs/TOOLS.md, generated from the registry.
What a client sees
This server exposes all three MCP primitives, not just tools:
Primitive | What it gives you |
Tools | every CATS endpoint, plus batch reads and a status check |
Resources | what this adapter is, which account it is attached to, and the account-specific ids nothing else works without |
Prompts | how to operate the CATS API correctly - not what to do with the results |
Start with the resource cats://server/capabilities. It states what this server
owns, what it deliberately leaves to the caller, and how it is configured - and
it works even when CATS is unreachable.
Related MCP server: Viterbit MCP Server
What this is, and is not
This is an adapter. It owns CATS authentication, endpoint coverage, tool schemas, discovery metadata, response shaping, pagination, rate-limit handling and safety classification.
It does not own recruiting workflows, agent orchestration, memory, outreach, scheduling, candidate ranking, or a frontend. Those belong to the calling orchestrator. See docs/ARCHITECTURE.md.
Install
uv venv
uv pip install -r requirements.txt -r requirements-dev.txt
uv pip install -e .FastMCP 4 is a prerelease, so every dependency is pinned exactly - a loose specifier lets uv resolve that package to a prerelease too.
Configure
Copy the variables you need into .env (gitignored) or set them in your
deployment environment.
Variable | Default | Purpose |
| - | Required. CATS API key |
|
| API base URL |
| - | e.g. |
|
|
|
| all | e.g. |
|
|
|
|
| HTTP bind |
| - |
|
| - | JWKS endpoint, for |
| - | JWT claims to verify |
|
| results per |
|
| logging verbosity |
Run
python server.py # stdio, for Claude Desktop / Cursor / Claude Code
CATS_TRANSPORT=http python server.py # HTTP (requires auth, see below)Or via the FastMCP CLI:
fastmcp run src/cats_mcp/app.py:mcpDiscovery modes
The catalog is large on purpose - atomic coverage is what makes the adapter reusable. But those schemas must not all land in a model's context.
Mode | The model sees | Use for |
| the full authorized catalog | orchestrators doing their own tool discovery |
|
| direct MCP clients |
| a Code Mode sandbox | multi-step composition without intermediate results |
Every tool stays callable in every mode. Only visibility changes; hidden
tools are reached through call_tool, and authorization is enforced the same
either way.
Mastra and other orchestrators should use raw and run their own tool
search across every connected MCP server. Stacking this server's BM25 transform
under Mastra's means searching an index of an index, and prevents Mastra from
ranking CATS tools against tools from other servers.
code needs an optional extra:
uv pip install -e '.[code-mode]'Authentication
Serving over HTTP requires saying who verifies the caller, via
CATS_AUTH_MODE. There is no default, because guessing wrong is harmful in
both directions: assume a gateway that is not there and destructive tools sit
on an open URL; assume none and a correctly-fronted deployment fails to start.
Mode | Meaning | Use when |
| something in front authenticates first | hosted on Prefect Horizon, or behind a reverse proxy |
| this server verifies bearer tokens itself | self-hosted with nothing in front |
| nobody authenticates | local development only |
On Horizon, use platform. Its gateway "runs before your server code" and
authentication is enabled by default for hosted endpoints, so a rejected caller
never reaches this process.
For jwt:
CATS_AUTH_MODE=jwt
CATS_AUTH_JWKS_URI=https://your-issuer/.well-known/jwks.json
CATS_AUTH_ISSUER=https://your-issuer/
CATS_AUTH_AUDIENCE=cats-mcpstdio needs no mode - the transport is a pipe to a process you started.
Per-tool scopes (cats:read, cats:write, cats:destructive,
cats:bulk, cats:admin) apply in jwt mode, where this server sees verified
claims. Authorization then filters discovery as well as execution: a
read-only caller cannot see destructive tools in a listing, in search results,
or reach them through call_tool. Under platform, the gateway authenticates
but this server sees no claims, so authorization is the gateway's to enforce.
Working with candidate data
List and search tools return compact summaries by default - ids plus a small
field projection, with count, total, has_more and next_page.
Widen deliberately:
Level | Returns |
| a handful of identifying fields |
| the record, including custom fields - certifications, trade qualifications, screening answers |
| the whole record |
| exactly those columns |
Custom fields are where account-specific screening data lives, so reach for
summary_level='standard' rather than fetching each candidate individually -
that is the difference between one request and fifty against a 500/hour budget.
Links back to CATS
Set CATS_UI_BASE_URL and every record carries a url field pointing at it in
the CATS web UI. Consumers were otherwise building these by hand and getting
them wrong - CATS uses index.php?m=candidates&a=show&candidateID=..., not a
REST-style /candidates/{id} path, so hand-built links look right in a
spreadsheet and 404 when clicked.
Unset, no link is emitted at all. A missing link is recoverable; a wrong one is not noticed until someone tries to use it.
Resumes, attachments, activities, pipelines and applications are never included
in a list at any level. They are unbounded in size and each has its own tool -
download_attachment returns the actual document for the model to read.
Rate limits
The CATS standard is 500 requests/hour. Some accounts are raised, so the
real ceiling is read from the response headers rather than assumed;
Retry-After is honoured and backoff is jittered.
Call get_connection_status to see the remaining budget before a large batch.
The composite read primitives exist for this reason - get_candidate_engagement
answers "when was each of these 50 candidates last contacted" in one tool call
instead of 50, and returns a compact table instead of 50 activity lists. See
docs/TOOLS.md.
Development
python -m pytest tests/ -q # test suite
python -m ruff check src/ tests/ # lint
python scripts/generate_tool_docs.py --write # regenerate docs/TOOLS.mdTool counts are generated from the registry and a test fails if the docs drift.
Adding a tool
Tools are declarative. Add a ToolSpec to the right module in
src/cats_mcp/registry/specs/ - name, endpoint, method, parameters and their
locations, safety class, tags and response strategy. One executor turns any spec
into a working tool; there is no per-tool request code to write.
Documentation
Document | Covers |
what this owns and does not, consumers, design decisions | |
running it locally, on Horizon, or self-hosted | |
tool, resource and prompt inventory (generated) | |
secret handling and the pre-commit guard |
Superseded documentation is not kept in the working tree; git history has it.
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
- Alicense-qualityDmaintenanceEnables interaction with the Loxo recruitment platform API, facilitating tasks such as candidate and job management, activity logging, and call queue management through AI assistants.5MIT
- Flicense-qualityDmaintenanceEnables interaction with Viterbit recruitment API for managing candidates, jobs, and applications. Supports searching, updating candidate data, handling job applications, and advanced filtering with subscription and activity status tracking.
- Flicense-quality-maintenanceEnables interaction with the PeopleBox Applicant Tracking System (ATS) to manage candidates, positions, and recruitment pipelines. It provides tools for searching candidate profiles, adding notes, and tracking application timelines through natural language interfaces.
- Alicense-qualityDmaintenanceProvides comprehensive access to the Kaseya VSAX (VSA 10) REST API v3 through 67 specialized tools. It enables users to manage devices, run workflows, execute scripts, and oversee organizational data using natural language and OData query support.1MIT
Related MCP Connectors
Hire real humans for tasks agents can't do alone. 36 tools for the full hiring lifecycle.
Universal AI API Orchestrator — 1,554 tools, 96 services. One install.
60+ Meta Ads tools for AI agents: audits, campaign management, audiences and CAPI tracking.
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/vanman2024/cats-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server