Model Context Protocol server for TalentNex (Cauldron backend) providing candidates/challenges tools and resources
Project description
TalentNex MCP Server (Python)
Model Context Protocol server for TalentNex (Cauldron backend). Exposes candidate and challenge data via MCP tools and resources, forwarding the Nexa Flow auth token as Authorization: Bearer <token> to Cauldron.
Features
- Tools:
getCandidateById,searchCandidates,getJobRoles(shaped like cauldron-mcp-server redactions, includingparsedResume). - Resources:
talentnex://candidates/recent,talentnex://challenges/all. - Transports: stdio (
mcp-talentnex) and HTTP/SSE (mcp-talentnex-http).
Requirements
- Python >= 3.10
- Env:
CAULDRON_API_BASE_URL(e.g.,https://api.cauldron.example.com) - Auth:
Authorization: Bearer <token>provided by Nexa Flow (passed through by client or HTTP header). For stdio, setTALENTNEX_BEARER_TOKENor provide per-call via HTTP wrapper.
Install
pip install mcp-talentnex
# or
uvx mcp-talentnex
Run (stdio)
export CAULDRON_API_BASE_URL="https://api.cauldron.example.com"
export TALENTNEX_BEARER_TOKEN="<nexa-flow-token>"
mcp-talentnex
Run (HTTP/SSE)
export CAULDRON_API_BASE_URL="https://api.cauldron.example.com"
uvx mcp-talentnex-http
# or
mcp-talentnex-http
HTTP endpoints (for Claude Desktop HTTP MCP):
GET /mcp/toolsPOST /mcp/tools/call{ name, arguments }GET /mcp/resourcesPOST /mcp/resources/read{ uri }GET /health
Pass Authorization: Bearer <token> on each HTTP call; the server forwards it to Cauldron.
Tools
getCandidateByIdargs: { userId, companyId, candidateId, token? }searchCandidatesargs: { userId, companyId, q?, skills?, status?, limit?, skip?, token? }getJobRolesargs: { userId, companyId, status?, limit?, skip?, token? }
If token is omitted, the server uses TALENTNEX_BEARER_TOKEN (stdio) or the HTTP Authorization header.
Resources
talentnex://candidates/recent(uses limit 20, skip 0)talentnex://challenges/all(limit 50, skip 0)
Development (from source)
cd talentnex-mcp-server
python -m venv .venv && source .venv/bin/activate
pip install -e .[dev]
pytest
Configuration
CAULDRON_API_BASE_URL(required)TALENTNEX_DEFAULT_LIMIT(optional, default 20)TALENTNEX_DEFAULT_SKIP(optional, default 0)TALENTNEX_BEARER_TOKEN(fallback token for stdio)
Packaging / Release
- Bump version in
pyproject.toml python -m buildtwine upload dist/*- Smoke:
uvx mcp-talentnex --help
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_talentnex-0.1.0.tar.gz.
File metadata
- Download URL: mcp_talentnex-0.1.0.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
464fbe2e7dbf57dfea7bb3bbe9c391f97f7d61a69623a630b606f10d476a6c08
|
|
| MD5 |
abe5c0ef53679bd7b9df2e27c5737509
|
|
| BLAKE2b-256 |
486c88507b9c90dab2630df71bc730a0aa7f05fd88b624a0297863b53daad7c3
|
File details
Details for the file mcp_talentnex-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mcp_talentnex-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0f5e4473d2a4d50166f6a13abc1777ae2905fc3e1f995ad08bc3261ef87523b
|
|
| MD5 |
d490393028eba0b207a37fbe37f73bd4
|
|
| BLAKE2b-256 |
047c620c3a87f80b0aa4b6b951f638fed2468d7baf109150d8280eaff271a9ea
|