🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@usekaval/mcp

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@usekaval/mcp

MCP server for Kaval: before an AI agent acts, verify the facts the action depends on — ALLOW, REVIEW, or BLOCK, with a signed receipt.

latest
Source
npmnpm
Version
0.7.2
Version published
Weekly downloads
343
66.5%
Maintainers
1
Weekly downloads
 
Created
Source

@usekaval/mcp

Before an AI agent acts, Kaval verifies the facts that action depends on and answers ALLOW, REVIEW, or BLOCK with a signed receipt. This package exposes that as an MCP server.

Policy engines decide whether an action is permitted under the rules; Kaval verifies whether the facts those rules depend on are still true.

This package is a thin client over the hosted Kaval API. All compilation, grounding, and retrieval run server-side, so you bring just a Kaval API key — no model or search keys, no local engine.

0.6 is a breaking release. Nine tools became seven, and everything removed folded into check; the API answers 410 tool_retired for the old routes and this server translates that into an error that tells the agent to call check. See Migrating from 0.5.

Run it

npx -y @usekaval/mcp

It speaks MCP over stdio. Point any MCP client at it.

Client config

{
  "mcpServers": {
    "kaval": {
      "command": "npx",
      "args": ["-y", "@usekaval/mcp"],
      "env": {
        "KAVAL_API_KEY": "kv_live_…",
      },
    },
  },
}

Tools

ToolWhat it does
checkThe one that does the work. Send the action you are about to take (or the claims it rests on) → ALLOW / REVIEW / BLOCK, per-fact status, and a signed receipt.
get_receiptThe full signed document behind a check's receipt.id — per-fact evidence basis, decision-rule version, signing key. What an agent attaches when it blocks.
prepare_contract_uploadCreate a private PDF upload target.
ingest_contractQueue canonical text, an HTTPS document, or an uploaded PDF for extraction.
get_contractGet contract processing status, candidate counts, and extraction issue state.
list_contract_claimsList extracted candidates with exact evidence spans.
list_contract_extraction_issuesList deterministic extraction failures that need customer review.
review_contract_claimApprove, correct, or reject one candidate with immutable version control.
import_factsQueue up to 400 reviewed facts for warm checks.
get_fact_importGet one bulk import and every item result.
list_bulletinsSoft-deprecated — filter structured bulletins by payer, policy, code, date, or status. Prefer list_policy_updates for new integrations.
get_bulletinSoft-deprecated — get one structured bulletin with field evidence. Prefer get_policy_update.
list_bulletin_extraction_attemptsSoft-deprecated — list customer-readable bulletin extraction status and failures. Prefer list_policy_updates.
get_bulletin_extraction_attemptSoft-deprecated — get one bulletin extraction attempt by source-version id. Prefer get_policy_update.
list_training_jobsList read-only training and evaluation status.
get_training_jobGet one read-only training job.
list_training_feedbackList reviewed feedback and its effective training-use state.
record_training_feedback_consentRecord an explicit training-use decision for one reviewed feedback item.
create_extraction_schemaRegister a JSON Schema Kaval extracts structured records against. Requires policy-update:manage.
list_extraction_schemasList the extraction schemas registered in this workspace.
create_policy_updateRequest a one-off payer + period extraction run against a bound schema. Requires policy-update:manage.
get_policy_updateGet one extraction run ('policy update') by id — status, schema, and result once it succeeds.
list_policy_updatesList extraction runs, optionally filtered by payer and/or publication-month YYYY-MM period.
list_policy_update_packagesList the monthly PDF + manifest rollups extraction runs are packaged into.
add_sourceTell Kaval what to watch — a URL, a named authority to resolve, or a document you will push in.
list_sourcesWhat Kaval currently watches for this workspace, including sources it auto-registered after a check cited them.
remove_sourceStop watching a source and forget it. The only thing that frees registry capacity, which auto-registered sources also consume.
update_sourceBind (or unbind) an extraction schema on a watched source, so every document that lands on it is extracted automatically. Requires policy-update:manage.
get_source_version_contentFetch the captured content of one fetched source version, as raw text or pre-split sections.
report_outcomeReport what actually happened after a prior check (by receipt.id), so Kaval can calibrate.
verifyDeprecated pilot alias: one conclusion + explicit evidence_refs → a signed ProofPacket receipt. Use check.

Resources

The server publishes these JSON resources:

  • kaval://bulletins
  • kaval://bulletins/extraction-attempts
  • kaval://training-jobs
  • kaval://training-feedback
  • kaval://contracts/{contract_id}
  • kaval://contracts/{contract_id}/claims
  • kaval://contracts/{contract_id}/extraction-issues
  • kaval://bulletins/{source_version_id}
  • kaval://bulletins/extraction-attempts/{source_version_id}
  • kaval://fact-imports/{import_id}
  • kaval://training-jobs/{job_id}

The training resources are read-only. Feedback review and consent require training:manage.

Bulletin extraction status is read-only. MCP does not expose the operator requeue control.

MCP does not start training or promote a model.

check

// arguments
{
  "action": "Approve this prior-authorization request at the in-network rate",
  "context": "payer: Aetna; CPT 12345; plan HMO",
  "materiality": "critical",
}

Or skip extraction entirely by naming the facts:

{
  "claims": [
    {
      "subject": "Aetna",
      "predicate": "requires_prior_auth_for",
      "object": "CPT 12345",
      "scope": { "plan": "HMO", "state": "CA" },
    },
    "The 2024 IBC is the current edition",
  ],
  "mode": "fast",
}

The response:

fieldmeaning
decisionALLOW — every material fact still holds on fresh evidence, proceed.
REVIEW — something is unknown, mid-re-evaluation, or changed at low/medium materiality. REVIEW is never permission to act.
BLOCK — a high/critical fact changed, or a critical fact is unknown.
reason_codesone or more of ALL_FACTS_HOLD, FACT_CHANGED, FACT_EXPIRED, FACT_UNKNOWN, SOURCE_UPDATED_PENDING_REVIEW, SOURCE_UNREACHABLE, NEW_FACT_UNVERIFIED, COMPILATION_UNCERTAIN
facts[]{ fingerprint, text, status: holds | changed | unknown, materiality, served_from_state, last_verified_at, sources[] } — this is how you see which belief moved
receipt{ id, signature, signed_at }. Pass receipt.id to report_outcome, or to get_receipt for the full signed document
latency_ms{ compile, lookup, live, total }

mode: "fast" answers only from stored state and reports anything unknown as unknown; "standard" (default) may research a stale or novel fact within max_wait_ms. A fact that misses the budget comes back unknown — it does not warm the next check, because that check recompiles the action and asks about different fact fingerprints.

The budget. The API's own default is 100000 ms, because a cold action check with several novel premises routinely needs 50–100s of live research. MCP cannot spend that: an MCP client cancels a tool call after 60s. So this server sends max_wait_ms: 45000 explicitly and caps the argument there, and gives its HTTP client a 55s deadline so the timeout fires here — as {"error":"timeout"} with a recovery move — rather than as a cancelled request. Pass a smaller max_wait_ms when a bounded REVIEW beats waiting; 0 disables research entirely, which is what mode: "fast" does. Direct HTTP and SDK callers are not bound by any of this and get the full 100000.

A fact already backed by a watched source is answered from stored state with zero model calls and zero fetches, so calling check on every consequential action is cheap. A fact Kaval has never seen has to be researched first, and that takes seconds.

Keeping checks warm

add_source is what makes a check a database read instead of a research run. Registering the name of an authority is usually enough:

{ "kind": "entity", "name": "Aetna", "intent": "payer policy bulletins" }

Kaval resolves that to the pages that publish it and watches them adaptively. kind: "url" watches one page; kind: "push" is a document your own system sends to POST /v1/events. Registering is optional — a source a check cites is auto-watched — but registering first is what makes the first check on a fact fast.

That auto-watching is why remove_source exists. A workspace watches a bounded number of active sources (200), auto-registered sources count against the same bound, and only deletion frees it — pausing does not. An agent that registers per task and never removes will eventually fill the registry, after which new citations are dropped silently and checks that used to be warm go back to researching. Remove what a task registered when the task is done.

Policy updates

create_extraction_schema registers a JSON Schema; bind its id to a watched source with update_source({ id, extraction_schema_id }) and every document that lands on that source afterward is extracted against the schema automatically — no polling. For a one-off run against a payer + period instead of waiting for the next document, call create_policy_update directly. Either way, get_policy_update / list_policy_updates report the run's lifecycle (processingretrysucceeded / review_required / failed), and list_policy_update_packages lists the monthly PDF + manifest rollups each payer/period is packaged into. get_source_version_content fetches the canonical text (or format: "sections") an extraction run was computed from.

This is the schema-bound successor to the free-text bulletin tools (list_bulletins, get_bulletin, list_bulletin_extraction_attempts, get_bulletin_extraction_attempt), which are soft-deprecated but keep working.

Delta webhooks are not an agent tool

Watched sources are only half the mechanism: when a source changes, Kaval re-evaluates the dependent facts and pushes a fact_state.delta webhook naming what flipped; a source with a bound extraction schema also pushes policy_update.document (and, monthly, policy_update.monthly_package) with the extracted records, optional section page/bbox, and record_evidence for PDF highlighting. extraction_run.period is the publication / newsletter month. Those subscriptions are deliberately not exposed as MCP tools. They are one-time deployment configuration — each mints a standing outbound callback bound to an https endpoint and a signing secret that must be stored, which is a deploy-time decision for a human or a service, not an in-loop choice for an agent that owns neither the endpoint nor the secret.

Configure them once from the SDK (kaval.subscribeFactStateDeltas({ callback_url }) / kaval.subscribePolicyUpdates({ callback_url }) in Node, kaval.subscribe_fact_state_deltas(…) / kaval.subscribe_policy_updates(…) in Python), from POST /v1/webhooks with subscription_kind: "fact_state" or "policy_update", or from the dashboard. The agent then just calls check (or reads list_policy_updates), and it is already fast and already current.

Migrating from 0.5

0.5 tool0.6
currentness_checkcheck{ action } or { claims: ["…"] }
currentness_verifycheck — branch on decision === "ALLOW" instead of act === true
currentness_extract_and_checkcheck — pass the paragraph as action/context; Kaval compiles the facts itself
currentness_scan_storecheck{ claims: [...] }, up to 20 per call
currentness_monitoradd_source + a fact_state webhook subscription (see above) — deltas are pushed to you
proof_auditcheck — the receipt is the proof; get_receipt returns the signed document
proof_gatecheck — the warm path re-checks from stored state, so there is nothing to re-apply
report_outcomereport_outcome (unchanged; pass receipt.id)
verifyverify, now deprecated → move to check

Status mapping: current + act: truedecision: "ALLOW" with every fact holds; stale/contradicted → a fact changed (REVIEW or BLOCK by materiality); unsupported/insufficient/conflicting → a fact unknown (REVIEW, or BLOCK if critical).

A 0.5 client calling a removed route gets 410 {"error":"tool_retired","replacement":"/v1/check"}, which this server surfaces as {"error":"tool_retired","message":"this capability was folded into the check tool …","status":410}.

Idempotency

Contract uploads, contract creation, claim reviews, fact imports, create_extraction_schema, create_policy_update, and verify carry operation keys. The server creates a key when you omit one. Reuse the returned key after an ambiguous failure.

check deliberately carries none: it is a read of current state, so a retry recomputes rather than replays and cannot double-bill.

Tool errors

A failed tool call returns isError: true and a JSON body naming what happened, so an agent can branch on it rather than parse prose.

errorwhat to do
any API code (unauthorized, insufficient_balance, bad_request, …)returned verbatim with status and the API's message
tool_retired410 — the message names the route that replaced the one you called
timeoutretry with mode: "fast" or a smaller max_wait_ms
network_unreachablethe API was never reached — check KAVAL_BASE_URL and network access
request_ambiguousa billable call whose outcome is unknown; retry with the returned idempotency_key

Signed receipts

Check receipts are Ed25519-signed and self-derivable: because the decision table is published, the receipt's own fact list re-derives the verdict offline, byte for byte, with no server. Verify one with @usekaval/kaval/verify — a dependency-free subpath of the Node SDK this package already depends on, plus the kaval-receipt-verify CLI that SDK ships. It answers cryptographic validity, key trust, and freshness separately, needs no Kaval account and no API key, and reads the public keys from the unauthenticated GET /v1/proof-verification-keys/:kid — or from a keyset you archived beside the receipt, which is the fully offline path.

npx -p @usekaval/kaval kaval-receipt-verify verify receipt.json \
  --key-url https://api.usekaval.com/v1/proof-verification-keys

check returns only { id, signature, signed_at }. Call get_receipt with that id for the document that was actually signed — every fact with its state, the evidence basis under it (source locator, content digest and what the digest covers, fetch and publication time), the decision-rule version, and the signing key id. That is the artifact to attach to a BLOCK you escalate.

Honest boundaries: demo results carry no organizational authority; a production ALLOW requires a customer-bound action policy and applicable empirical calibration; REVIEW is never permission to act.

Environment

VarRequiredPurpose
KAVAL_API_KEYyesBearer key for the hosted Kaval API (create one at https://usekaval.com)
KAVAL_BASE_URLnoOverride the API base URL (self-hosted / staging). Defaults to https://api.usekaval.com

Both are declared in server.json and smithery.yaml, so a registry install can point at a self-hosted deployment rather than only at the hosted API.

The marketing site uses KAVAL_API_URL for its /api/verify proxy — not KAVAL_BASE_URL.

Programmatic use

This package is primarily a CLI (kaval-mcp). It also exports the server factory for embedding:

import { createMcpServer, createClientFromEnv } from "@usekaval/mcp";

const server = createMcpServer(createClientFromEnv());
// connect `server` to your own MCP transport

Or pass your own configured client:

import { createMcpServer } from "@usekaval/mcp";
import { Kaval } from "@usekaval/kaval";

const server = createMcpServer(
  new Kaval({ apiKey: process.env.KAVAL_API_KEY }),
);

Keywords

kaval

FAQs

Package last updated on 06 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts