Run AI interviews, manage candidates and read hiring analytics on JobMojito.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
JobMojito is an AI interview platform for hiring teams: let AI interview every candidate β you make the call. Lifelike avatar and voice agents run structured, multilingual interviews at any scale, score them in real time, and hand recruiters the transcripts, summaries and reports they need to make the actual decision. Everything the platform produces is decision support for a qualified human reviewer β never the hiring decision itself.
What the platform offers:
Around the product: the admin console at app.jobmojito.com,
developer/API docs at developer.jobmojito.com,
the help center at help.jobmojito.com, and the
hosted MCP endpoint this repo powers at https://mcp.jobmojito.com/mcp.
This repository is the MCP server that puts all of that into AI assistants like Claude and ChatGPT.
An MCP server for the JobMojito API, built
with FastMCP and designed to deploy on
Prefect Horizon (the MCP platform from the FastMCP
team β app.prefect.cloud β Horizon).
It exposes:
GET
lists β are surfaced as tools with clean, curated names, each with a title and
read-only/destructive annotations.search_documentation, get_documentation) that read
the developer docs and help center live β docs stay single-source on their
existing platforms; nothing is copied into this repo.| Concern | Approach |
|---|---|
| API β tools | FastMCP.from_openapi(...), all routes mapped to Tools, curated names via injected operationIds |
| Spec freshness | Fetched live at startup; a runtime cache + committed snapshot are fallbacks |
| Auth | SupabaseProvider (Remote OAuth); per-request JWT forwarding to the upstream API |
| Docs | Built-in tools reading developer.jobmojito.com/llms.txt + .md and the help.jobmojito.com (Featurebase) help center |
| File | Purpose |
|---|---|
server.py | Entry point β builds and exposes mcp (point Horizon at server.py:mcp) |
config.py | Environment-driven settings |
openapi_loader.py | Live fetch + cache/snapshot fallback + operationId injection |
naming.py | Curated tool names, titles, hints and annotations per endpoint |
upstream.py | httpx client that forwards the user's Supabase JWT to the API |
middleware.py | Call logging, upstream-error rewriting, result-size guard, annotation backfill |
merchants.py | Merchant picker (MCP App UI) + list_my_merchants text fallback |
docs_tools.py | search_documentation / get_documentation |
featurebase.py | Featurebase REST client (help-center articles) |
mintlify.py | Mintlify developer-docs MCP proxy + client-credentials auth |
tests/ | test_smoke.py (inventory, schema relaxation, docs) + test_listing_readiness.py (directory contract) |
docs/ | Developer docs: architecture, development, deployment |
scripts/update_snapshot.py | Refresh the committed fallback spec |
scripts/try_docs.py | Local smoke test for the documentation tools |
data/openapi.snapshot.json | Offline fallback spec (regenerate from your machine) |
lazy_auth.py | Unauthenticated capability discovery + scope= on the 401 challenge |
wellknown.py | /healthz, OpenAI domain challenge, Smithery server card |
server.json | Official MCP Registry entry |
.github/workflows/publish-registry.yml | Publishes server.json to the MCP Registry when a push to main changes server.py:SERVER_VERSION (or via manual dispatch) |
Testing notes:
search_documentation, and the mounted Mintlify
search_*_developer_* / query_docs_filesystem_*) work with ENABLE_AUTH=false
β no Supabase login needed. scripts/try_docs.py is the fastest check.create_interview, list_candidates, β¦) call the real
JobMojito API and need a Supabase user token. For local testing, set
JOBMOJITO_DEV_BEARER_TOKEN in .env to a valid Supabase access token; it's
forwarded when ENABLE_AUTH=false. (Never set this in production β there the
token comes from the user's OAuth session.)ENABLE_AUTH=true, set BASE_URL=http://localhost:8000, and connect a client
that supports OAuth (it will bounce you through Supabase).Refresh the fallback snapshot from a network that can reach the API:
python scripts/update_snapshot.py(the committed snapshot in this repo is a thin structural fallback; this replaces it with the full live spec).
This server uses Supabase's OAuth Server feature (which supports Dynamic Client Registration, so MCP clients self-register). The MCP server is the OAuth resource server β it validates tokens; Supabase issues them.
Project: https://momsbvnltsydezmoesqt.supabase.co
SupabaseProvider derives every endpoint from this project URL:
| Endpoint | URL |
|---|---|
| Authorize | β¦/auth/v1/oauth/authorize |
| Token | β¦/auth/v1/oauth/token |
| JWKS | β¦/auth/v1/.well-known/jwks.json |
| OIDC discovery | β¦/auth/v1/.well-known/openid-configuration |
Steps:
https://app.jobmojito.com/oauth/consentSUPABASE_PROJECT_URL=https://momsbvnltsydezmoesqt.supabase.co,
BASE_URL=https://mcp.jobmojito.com (public base, no /mcp),
SUPABASE_JWT_ALGORITHM=ES256 (switch to RS256 if your JWKS shows RSA keys).apikey header, set SUPABASE_ANON_KEY.Consent is handled by Supabase / your app, not this server. Because the Site
URL is app.jobmojito.com, Supabase serves the approve/deny screen at
https://app.jobmojito.com/oauth/consent, where the user already has a Supabase
session. This MCP server is only the OAuth resource server β it does not serve a
consent page. SITE_URL and OAUTH_CONSENT_PATH are informational and should
match your Supabase OAuth Server settings.
Token note:
SupabaseProvidercannot validate token audience (Supabase Auth doesn't implement RFC 8707 resource indicators yet). This is expected and logged at startup.
Every tool call requires the user to be signed in via Supabase OAuth β
including search_documentation and get_documentation. Keep ENABLE_AUTH=true;
the signed-in user's token is forwarded to the JobMojito API so calls respect that
user's permissions.
The one deliberate exception is capability discovery: with ENABLE_LAZY_AUTH
(default true), initialize, ping and the */list methods answer without a
token so directory crawlers can render the tool list. No data is reachable that
way β every tools/call, resource read and prompt still needs a verified JWT.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/jobmojito-2)<a href="https://allmcps.com/mcp/jobmojito-2"><img src="https://allmcps.com/api/badge/jobmojito-2?style=directory" alt="JobMojito on AllMCPs" /></a>