Jev and MCP: using Jev as a Model Context Protocol tool
TypeSafe does not publish an official MCP server for Jev: its documentation covers an HTTP API, client SDKs and an agent skill, and none of its pages mention the Model Context Protocol (docs index). Community developers have filled the gap with MCP servers that wrap Jev's typed questions as tools, so an LLM agent can hand off a quick, calibrated decision instead of reasoning it out in text.
Is there an official TypeSafe MCP server?
No, not as of September 2026. The docs index lists the HTTP API, the Python and JavaScript SDKs, and an agent skill for Claude Code and Codex, but no MCP server (docs index). TypeSafe's public GitHub organization lists the skill, the Python and JavaScript SDKs and an adapter library, alongside a few unrelated repos, and none of them is an MCP server (typesafe-ai on GitHub).
So every "Jev MCP" or "TypeSafe MCP" server you find is a community project. Read its README, check which API key it expects, and treat it as third-party code. For the official ways in, see how to use Jev and the SDKs and integrations list.
What a Jev MCP server actually does
Jev is a decision model, not a chat model. You send it a state (text, a JSON object or an array of text) plus typed questions, and it returns a typed answer for each one: a choice from your options, a score on your rubric, or a noul between 0 and 1 for a yes/no statement (Introduction). It does not write text, call tools or hold a conversation (Jev with coding agents).
An MCP server bridges that gap. The LLM agent decides when to call the tool and passes the state; the server sends a request to TypeSafe's single evaluation endpoint, POST https://api.typesafe.ai/v1/systemone, and hands the typed answer back (API reference). This is the smallest request the API reference shows:
{
"state": "Help! My payouts have been failing for 3 days.",
"model": "jev-latest",
"questions": {
"is_urgent": {
"type": "noul",
"instructions": "Does this convey urgency?"
}
}
}
In community servers, tools with names like classify, verify or screen wrap requests like this one with preset questions.
Why Jev works well as an MCP tool
- Typed by construction. TypeSafe suggests Jev where you would otherwise ask an LLM to "return JSON", because the call returns typed values directly (Jev with coding agents).
- Many questions, one call. Every question is evaluated in parallel and in isolation against the same state, and adding questions barely changes response time (Introduction).
- Confidence the agent can act on. Choice and Score answers carry a
confidencefrom 0 to 1, so the caller can act, ask for confirmation or hand off to a person (Confidence). - Cheap enough to call often. Jev 1.13 costs $0.042 per million input tokens, and output tokens are free (Models). See Jev pricing for more.
TypeSafe's launch post calls Jev "a frontier-intelligence function call: unstructured state in, typed probabilistic decisions out" (launch post). That is exactly the shape of an MCP tool. For how this differs from asking the agent's own model, see Jev vs an LLM.
What to check before you plug one in
- Input limits. Jev takes text only, with 64k tokens per request and 32k for the state plus the longest question (Models). Large files or screenshots need converting to text first.
- Rate limits. Jev 1.13 allows 1,200 requests per minute, and a request over the limit returns
429 Too Many Requests(Models). An agent that calls a tool in a loop can hit this. - Model version. The
jev-latestalias moves when a new release ships. If a server's thresholds were tuned on one version, pin that version ID (Models). - Where decisions live. TypeSafe advises keeping questions and threshold constants in one file so people can review them (Agent skill). A good MCP server makes those easy to find and change.
If the server gates risky tool calls, also read safety and guardrails. For browser-driving servers, see agents and browsers.
Projects doing this
Questions
Does TypeSafe have an official MCP server for Jev?
No. As of September 2026 the TypeSafe docs cover the HTTP API, Python and JavaScript SDKs and an agent skill, but no MCP server. Every Jev MCP server listed here is a community project.
Can I use a Jev MCP server with Claude Code, Cursor or Codex?
Community servers list support for clients such as Claude Code, Claude Desktop, Cursor and Codex. Check each project's README for setup, since none of them is maintained by TypeSafe.
Does the MCP server make Jev the agent's main model?
No. Jev does not generate text or call tools. The agent keeps its own LLM and calls Jev as a tool when it needs a typed decision.
What does a Jev MCP tool return?
Whatever the underlying request returns: a choice with per-option probabilities and confidence, a score on a rubric with confidence, or a noul value between 0 and 1.
Do I need a TypeSafe API key?
Servers that call the TypeSafe API need one. Some community servers also list other providers, so read each README for the exact setup.
More guides: What is Jev?Jev pricing and API costJev vs LLMs: when to use whichHow to use Jev: a quickstartHow to use Jev with Claude CodeJev in an agentic harness: where it fits in an agent loopJev for orchestration: routing requests, models and skillsJev as a judge: evaluating LLM and agent outputsJev for SEO and GEOJev for ads and ad reviewJev for marketing and lead scoringIs there an open source Jev?Can you fine-tune Jev?Designing questions for JevWhat is RLCD?Jev statistics