Skip to main content
Glama
jevbook
by jevbook

Your agent already does things for you: sends emails, books, buys, researches. jev (the System One decision model from TypeSafe AI) checks those things first and answers with typed verdicts and calibrated probabilities, not prose. This server puts jev behind four MCP tools.

Connect

Meta Muse

Paste this into Muse:

Build a custom integration to JevBook. Its MCP server is https://jevbook.dev/mcp. Use it to verify claims and check important decisions before you act on them.

Muse builds the integration itself. No key is needed.

Claude Code

claude mcp add --transport http jevbook https://jevbook.dev/mcp

Cursor, Claude Desktop, any MCP client

{
  "mcpServers": {
    "jevbook": { "url": "https://jevbook.dev/mcp" }
  }
}

Transport: streamable HTTP, stateless, JSON responses.

Related MCP server: sentinel-mcp

Tools

tool

what it does

speed

verify_claim

Fact-checks one claim on any topic. Returns supported / contradicted / unverifiable with a probability, the checked sub-claims, sources and a receipt hash.

5-20 s

research

Answers a question from evidence only. Sources are reranked by jev, every claim in the answer is verified by jev.

5-20 s

decide

One typed judgment about any context. With options: the chosen option plus a probability for each. Without: a 0-1 score.

~1 s

scan_token

ape / watch / avoid for a token on Robinhood Chain or Base, plus rug risk, momentum, liquidity health and live market data.

< 1 s

Full input schemas: tools.json (pulled from the live server).

Real outputs

decide: "How urgently does this email need a reply?" on a final rent notice

{
  "question": "How urgently does this email need a reply?",
  "choice": "today",
  "probability": 1,
  "distribution": { "today": 1, "this_week": 0, "no_reply_needed": 0 },
  "model": "jev-1.13.0",
  "latency_ms": 647
}

verify_claim: "OpenAI launched ChatGPT in 2021."

{
  "claim": "OpenAI launched ChatGPT in 2021.",
  "verdict": "contradicted",
  "probability": 1,
  "distribution": { "supported": 0, "unverifiable": 0, "contradicted": 1 },
  "explanation": "No. OpenAI launched ChatGPT on November 30, 2022, not 2021. ...",
  "receipt": "9c531f4b2157245ac586312d676ae141a3577bf3f93482765525e4a04c6983c9",
  "jev": { "calls": 4, "ms": 1863, "cost_usd": 0.0006161 }
}

Try it from code

git clone https://github.com/jevbook/jevbook-mcp
cd jevbook-mcp && npm install
npm run example     # decide + verify_claim against the live server
npm run tools       # print the live tool schemas

Limits and keys

No key is needed. Anonymous calls share a daily pool. Hosted agents like Muse call from shared cloud IPs, so limits are not per IP.

For your own daily budget, register a free agent key (one request, see jevbook.dev/jev.txt) and send it as:

Authorization: Bearer jvb_...

The server holds all provider keys. Nothing you send is used for training; research inputs are stored with their receipt so every answer stays auditable.

Good to know

  • jev is an advisor, not a boss. Verdicts come with probabilities so your agent can decide how much weight to give them.

  • verify_claim researches the open web and live data. Very fresh or niche claims can come back unverifiable; that is the honest answer, not an error.

  • scan_token on $JEVBOOK (the house token of jevbook.dev) is marked as a house verdict with the conflict of interest declared.

More

  • jevbook.dev: the typed social network, Jev.Search, DYOR

  • npx jevbook: the same research engine in your terminal

  • jevscan: typed onchain verdicts as a library and CLI

Built by @jevbook. Powered by jev from TypeSafe AI. MIT.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables production-grade answer verification for LLM agents by independently re-checking answers with a configurable verifier model, enforcing confidence policies, and producing Ed25519-signed, auditable verification results with optional web search and knowledge-base evidence.
    3
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables governed tool-calling agents with policy decisions, optional human approval, hash-chained audit logging, and deterministic evaluation.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to perform pay-per-call security verification of wallets, tokens, contracts, dApps, agents, and more via a remote endpoint with no installation.
    2
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables 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.
    10
    758 npm
    88
    MIT