jev-code
Click on "Deploy 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., "@jev-codeTriage the failing tests in the last CI run: which are flaky, which are real bugs?"
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.
Coding agents make small classification decisions all day: which of these 40 CI failures are real, which files answer this question, does this PR do what its description says, how severe is each finding. They usually do it by eyeballing, by writing a regex, or by burning a frontier-model call per item.
Jev is a decision model rather than a text model: you send evidence and typed questions, it returns typed answers with calibrated probabilities, never prose. jev-code turns that into a first-class tool for four coding agents and ships a skill that teaches the agent when to reach for it.
┌──────────────┐ jev_classify / jev_check / ... ┌───────────┐ POST /v1/systemone ┌──────────────┐
│ Claude Code │ ───── MCP (stdio) ─────────────▶ │ │ ───────────────────▶ │ │
│ Codex │ ───── MCP (stdio) ─────────────▶ │ jev-code │ │ TypeSafe API │
│ OpenCode │ ───── MCP (stdio) ─────────────▶ │ │ ◀─────────────────── │ (Jev) │
│ Pi │ ───── native extension ────────▶ │ │ typed answers + │ │
│ any shell │ ───── jev-code CLI ────────────▶ │ │ probabilities │ │
└──────────────┘ └───────────┘ └──────────────┘What you get
Piece | What it does |
Five tools |
|
One skill |
|
One-command setup |
|
A CLI | The same tools from bash, so the skill still works in a harness with no tool registered. |
Related MCP server: jev-mcp
Quick start
1. Get a key at console.typesafe.ai/keys and export it:
export TYPESAFE_API_KEY=ts_...2. Install into your agents (Node.js 20+):
npx -y @francoischastel/jev-code setupThat detects the harnesses on your machine and, for each one, copies the skill and registers the
tool. Add harness names to be explicit (setup claude codex pi opencode), --project to install
into the current repository instead of your user profile, or --dry-run to see the plan first.
3. Check it works:
npx -y @francoischastel/jev-code doctor --live4. Restart your agent (or /reload inside pi) and ask for something that needs a classifier:
Triage the failing tests in the last CI run: which are flaky, which are real bugs?
The agent loads the jev skill, calls jev_classify with the failures and a class set, acts on
the auto results, and tells you which ones it double-checked by hand.
What a call looks like
The agent sends raw evidence and its own classes:
{
"instructions": "Classify each test failure by its most likely root cause.",
"items": [
{ "id": "test_login_sso", "text": "TimeoutError: SSO callback not received within 10s (attempt 3/3)" },
{ "id": "test_price_rounding", "text": "AssertionError: expected 19.99, got 19.989999999" }
],
"classes": {
"infrastructure": "Network, database, or runner problems unrelated to the code; likely passes on re-run",
"assertion_bug": "The code produced a wrong value; deterministic and reproducible",
"other": "Cannot tell from the excerpt"
}
}and gets back a label, the full distribution, and a decision it can branch on:
{
"summary": { "items": 2, "auto": 2, "review": 0, "by_label": { "infrastructure": 1, "assertion_bug": 1 } },
"results": [
{ "id": "test_login_sso", "label": "infrastructure", "probability": 0.93, "margin": 0.88, "confidence": 0.9, "decision": "auto", "probabilities": { "infrastructure": 0.93, "assertion_bug": 0.05, "other": 0.02 } },
{ "id": "test_price_rounding", "label": "assertion_bug", "probability": 0.97, "margin": 0.95, "confidence": 0.95, "decision": "auto", "probabilities": { "infrastructure": 0.01, "assertion_bug": 0.97, "other": 0.02 } }
],
"thresholds": { "auto_accept": 0.85, "min_margin": 0.5 },
"model": "jev-latest",
"usage": { "input_tokens": 310, "output_tokens": 18 }
}More payloads in examples/ and the full contract in
skills/jev/references/tools.md.
The tools
Tool | Ask it when | Comes back with |
| Many items, one label each from your classes | label, probabilities, margin, |
| Yes/no questions about one piece of evidence | probability, |
| Many items on one ordered scale (severity, priority) | score, nearest level, confidence, decision |
| Which candidates answer a question | relevance per candidate, sorted, plus |
| Anything else: mixed question types over one state | the raw System One answers |
Every tool validates its input locally (shapes, duplicate ids, request size) before spending a call, batches every item into one request, and returns decisions computed from thresholds you can override per call. Policy stays in your hands; Jev supplies the probabilities.
Per-harness details
jev-code setup claude copies the skill to ~/.claude/skills/jev/ and runs
claude mcp add --scope user jev -- npx -y @francoischastel/jev-code mcp. The tools appear as
mcp__jev__jev_classify and friends; the skill is /jev.
Prefer a plugin that updates itself? This repository is also a Claude Code plugin marketplace:
claude plugin marketplace add FrancoisChastel/jev-code
claude plugin install jev-code@jev-codeThe plugin bundles the skill (/jev-code:jev) and the MCP server. Manual configuration and
project-scope notes: docs/harnesses/claude-code.md.
jev-code setup codex copies the skill to ~/.agents/skills/jev/ (Codex's user-level skills
directory, shared with Pi and OpenCode) and runs codex mcp add jev -- npx -y @francoischastel/jev-code mcp.
Without the codex binary it appends a [mcp_servers.jev] table to ~/.codex/config.toml
instead. Invoke the skill with $jev. Details: docs/harnesses/codex.md.
Pi has no MCP client, so jev-code is also a pi package whose
extension registers the five tools natively. jev-code setup pi runs
pi install npm:@francoischastel/jev-code and copies the skill to ~/.agents/skills/jev/. Run
/reload inside pi afterwards. Details: docs/harnesses/pi.md.
jev-code setup opencode adds a local MCP entry to ~/.config/opencode/opencode.json (backing the
file up first) and copies the skill to ~/.agents/skills/jev/, which OpenCode reads. A native
custom-tool variant lives in integrations/opencode/jev.ts.
Details: docs/harnesses/opencode.md.
The skill is a standard Agent Skills directory, so the skills.sh installer works for the 70+ agents it supports:
npx skills add FrancoisChastel/jev-code --skill jevPair it with the MCP server (npx -y @francoischastel/jev-code mcp) in your agent's MCP config,
or let the agent fall back to the CLI.
CLI
jev-code setup [claude|codex|pi|opencode ...] [--project] [--dry-run] [--no-env]
jev-code doctor [--live]
jev-code classify --input payload.json # same JSON as the tool
echo '{"state":"12 passed, 0 failed","checks":{"green":"Did every test pass?"}}' | jev-code check
jev-code rank --input candidates.json --pretty
jev-code mcp # what the harness configs launch
jev-code skill # path of the bundled skillOutput is JSON on stdout. Exit code 2 means a usage or configuration problem, 1 an API failure.
Configuration
Variable | Default | Purpose |
| required | Your TypeSafe key. |
|
| Point at a proxy or a compatible endpoint. |
|
| Pin a Jev version. |
|
| Per-attempt timeout. |
|
| Retries on 429, 5xx, timeouts, and connection errors. |
The variable names match the official TypeSafe SDKs, so one export serves everything.
Security notes
Only the payload you pass reaches TypeSafe: the items, the questions, and the optional context. Nothing is read from your repository or session on its own.
Some harnesses filter the shell environment before launching MCP servers.
setuptherefore copiesTYPESAFE_API_KEYinto the harness's own server configuration when the variable is set. Pass--no-envto skip that and rely on the runtime environment instead.Config files that already exist are backed up next to the original (
*.bak-<timestamp>) before they are modified. Malformed JSON or TOML is left untouched and reported.doctorprints a masked key hint only; the key itself is never logged.
How it works
src/tools/ holds the single definition of each tool: a zod schema, a description, and a run
function that builds one System One request and maps the answers to decisions. The MCP server
(src/mcp/), the Pi extension (integrations/pi/), the OpenCode custom tool
(integrations/opencode/), and the CLI (src/cli/) are thin adapters over that layer, which is
why the payloads and results are identical everywhere. src/setup/ knows where each harness reads
skills and MCP configuration and prefers each harness's own CLI over editing files.
Development
git clone https://github.com/FrancoisChastel/jev-code && cd jev-code
npm install
npm run check # lint, typecheck, skill validation, tests with coverage, build, smoke
npm test # unit tests, no API key needed
TYPESAFE_API_KEY=... npm run test:e2e # a few live calls against the real APITry your local build against a real harness without publishing:
npm run build
node dist/cli.js setup claude --command "node $PWD/dist/cli.js mcp"
node dist/cli.js setup pi --pi-source "$PWD"See CONTRIBUTING.md for conventions and the release process.
Related
typesafe-ai/skills: TypeSafe's own skill for building products on Jev. jev-code is about using Jev inside the coding agent; the two complement each other.
jkudish/jev-mcp and itsmostafa/typesafe-mcp: other MCP servers for Jev, with different tool sets.
TypeSafe docs and the llms.txt index.
License
MIT © François Chastel. Jev and TypeSafe are trademarks of TypeSafe AI; this project is not affiliated with TypeSafe.
This server cannot be deployed
Maintenance
Related MCP Connectors
Calibrated world model for AI agents. 40 tools: world state, markets, trading. Kalshi + Polymarket.
Reproducible benchmarks and reliability evidence for agent tools.
Calibrated probabilistic foresight for AI agents, powered by live prediction-market signal.
Verified, pay-per-use API tools for AI agents through one authenticated connection.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables agents to verify claims against cited evidence, screen content for prompt injection and relevance before reading it, and rank candidates by meaning, all with calibrated probability verdicts.10758 npm88MIT
- AlicenseAqualityCmaintenanceEnables typed, calibrated judgment calls through classify, score, check, and batched ask tools, each returning full probability distributions for programmatic decisions.51MIT
- AlicenseAqualityBmaintenanceEnables coding agents to make cheap, fast probabilistic decisions on every turn, with tools for coding-loop checks, review, verification, screening untrusted input, and ranking candidates.694 npm7MIT
- AlicenseAqualityAmaintenanceEnables agents to get fast, calibrated probabilistic answers from Jev (Typesafe AI) to yes/no, scale, or choice questions about provided material, without using a generative model.1MIT