Skip to main content

MCP for verifiable AI — the Vivory moat: Korean law/KYB verdicts (국가법령정보센터 + 열린국회정보 + NTS×CSL), deterministic-provenance-hash cross-source reconcile, DOI verdict + retraction gate, and an offline-verifiable receipt backbone (C2PA + file hash + hash chain). 13 tools / 4 categories (v0.14.0 moat collapse 2026-06-05: narrowed 87→13). Tools Pro $4.99/mo single key.

Project description

vivory-mcp-verification

Receipts on products, sources on content — one MCP server for every "is this real?" question.

An umbrella MCP (Model Context Protocol) server that gives AI agents a single registration for 13 verification tools across 4 categories — the moat: what only Vivory can offer. Korean public-data verdicts (국가법령정보센터 + 열린국회정보 + NTS × CSL Verified Fact corpus), a deterministic-provenance-hash cross-source reconcile engine, a DOI verdict + retraction gate, and an offline-verifiable receipt backbone (C2PA + content hash + hash chain).

v0.14.0 moat collapse (2026-06-05) narrowed the agent surface 87 → 13, dropping ~74 commodity public-API wrappers (LEI, SEC EDGAR, World Bank, USGS, DefiLlama, Wikidata, ClinicalTrials, ORCID, npm/PyPI, sanctions, archive/wayback, …) and surface-internal tools (repro/peer-review → the now-personal Repro Hub; forecast → the retired forecast surface). The tools.vivory.app web catalog keeps its breadth as an SEO discovery funnel — the parity invariant is decoupled to web ⊇ MCP.

Built by Vivory — a verifiable AI work platform. Mission: See for yourself.

What's inside (v0.14.0 — 13 tools / 4 categories)

Category # What it answers
Law (KR) 5 NTS × CSL Verified Fact corpus — law lookup + currency + case search + bill status + company KYB (the Korean public-data moat)
Reconcile 3 Cross-source consensus + deterministic provenance hash — company / recall / person (Vivory-differentiated method)
DOI 2 verify_doi (verdict) + doi_retraction_check (retraction gate) — the research-integrity anchor, before an LLM cites
Provenance 3 verify_c2pa + compute_file_hash + verify_hash_chain — the offline-verifiable receipt backbone

Per-tool name list: see src/vivory_mcp_verification/server.py module docstring (the source-of-truth catalog).

Why this exists

Modern AI agents generate citations, summaries, claims. Most aren't checked. A breadth of thin wrappers over public APIs (Crossref, World Bank, USGS) is something any agent can already reach — and most never call. So the agent surface here is not breadth; it's the moat: verifications that are Vivory-only (Korean public-data verdicts), Vivory-differentiated (the deterministic-provenance-hash reconcile), or the actual product (an offline-verifiable receipt you can recompute yourself).

Vivory's bet: a single MCP server with 13 verification tools, all wrapping api.vivory.app/api/verify/* (free anonymous tier, Tools Pro $4.99/mo for heavier rate limits — same key as the tools.vivory.app utility surface after the 2026-06-01 bundle absorb). One install, one registration, and your agent can:

  • check if a DOI was retracted before citing it;
  • reconcile a company / person / recall across 2-4 registries with a deterministic provenance hash anyone can recompute;
  • look up whether a Korean law is still in force, or a company's KYB status;
  • inspect an image's C2PA manifest + fingerprint any artifact into a receipt (SHA-256 / SHA-512 / IPFS CID) you can verify offline.

Install

pip install vivory-mcp-verification

Or using uv:

uv pip install vivory-mcp-verification

The package auto-installs the vivory-mcp-verification script.

Use with Claude Code / Claude Desktop

Add to your MCP config (~/.claude/mcp.json or Claude Desktop config):

{
  "mcpServers": {
    "vivory-verification": {
      "command": "vivory-mcp-verification"
    }
  }
}

For a higher rate limit, sign up at https://api.vivory.app/dashboard and add the key:

{
  "mcpServers": {
    "vivory-verification": {
      "command": "vivory-mcp-verification",
      "env": {
        "VIVORY_API_KEY": "vk_live_..."
      }
    }
  }
}

Use with claude mcp add (Claude Code CLI)

claude mcp add vivory-verification vivory-mcp-verification

Drop into your agent

Ready-to-copy recipes that wire Vivory verification into the most common agent stacks:

Agent stack Recipe
Claude Code subagent examples/claude-code-verify-before-publish.md
Cursor rule examples/cursor-verify.mdc
LangGraph node examples/langgraph-verification-node.py
Plain MCP client examples/quickstart.md

Each recipe is small (~30–60 lines), MIT-licensed, and battle-tested against the live api.vivory.app gateway. Use them as-is or fork the checks to your workflow.

Tier limits — Tools Pro key (bundle absorb 2026-06-01)

Tier Daily quota Notes
Anonymous 100/day/IP No signup, polite caching
Free 500/day Sign up at api.vivory.app/dashboard
Tools Pro 10,000/day $4.99/mo USDC (CoolWallet · Arbitrum) or card. 31-day pass, no auto-renew, no custody. The Tools Pro key authenticates both the tools.vivory.app utility surface and the Verification MCP (13 moat tools, Korean verdict tools included).
Enterprise 100,000/day contact@vivory.app (self-serve only, no SaaS sales)

2026-06-01 bundle absorb: the prior standalone Vivory API Pro ($29/mo Verification-only tier) was retired after landscape WTP analysis. The Tools Pro $4.99/mo key is now the single paid tier across all Vivory paid surfaces.

Sign up at tools.vivory.app/pro.

Heavy tools (company_reconcile / person_reconcile cross-source fan-out) count as 5 calls each.

How verification verdicts work

Every endpoint returns a uniform envelope:

{
  "implementation_phase": "v0.1-real",
  "checked_at": "2026-05-06T18:00:00Z",
  "sources": ["crossref", "openalex"],
  "data": { ... },
  "note": null
}

implementation_phase is the contract:

  • v0.1-real — full implementation, results trustworthy
  • v0.1-partial — partial (e.g. core works, advanced sub-feature pending)
  • v0.1-scaffold — envelope shape stable, backing service ships in a later release

Every tool returns its own phase so an agent can branch on it. The live count per phase is exposed at https://api.vivory.app/api/verify/manifest and never needs a package upgrade to stay in sync.

Error envelope (so agents can branch)

When a tool name is unknown or an upstream call fails, the MCP returns a structured envelope instead of raising:

{
  "error": "ConnectionError: ...",
  "code": "RATE_LIMIT|AUTH|TIMEOUT|NOT_FOUND|VALIDATION|UPSTREAM|UNKNOWN_TOOL",
  "tool": "verify_doi",
  "gateway": "vivory-mcp-verification",
  "did_you_mean": ["verify_dataset_fingerprint"]
}

Branch on code (stable) — not the human error string.

Self-hosting

Set VIVORY_API_BASE to point at your own gateway (the backend is open source — src/backend/app/routers/verify.py in jayjodev/vivory).

VIVORY_API_BASE=https://my-gateway.example.com/api vivory-mcp-verification

The Vivory MCP family

  • vivory-mcp-verification (this package) — 13 moat verification tools across 34 categories. Korean public sources are bundled inside verdict evidence (kor_law_currency, kor_company_status, doi_retraction_status, kor_case_search, kor_bill_status) instead of as a separate Korea-only MCP.
  • vivory-mcp-korearetired 2026-05-21 (v0.6.2 deprecation-only). Raw Korean-public-data passthrough was removed because re-distributing third-party data mismatched the verifiable-AI-work motto and several upstream source ToS. The REST gateway at api.vivory.app/api/public-tools/* went cluster-internal on 2026-05-22 — external callers no longer have a Korean raw-data surface from Vivory.
  • vivory-mcp-kosisretired 2026-05-28 (v0.1.4 deprecation-only). Original standalone KOSIS wrapper; superseded by the same migration path.

License

MIT.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vivory_mcp_verification-0.14.0.tar.gz (36.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vivory_mcp_verification-0.14.0-py3-none-any.whl (24.8 kB view details)

Uploaded Python 3

File details

Details for the file vivory_mcp_verification-0.14.0.tar.gz.

File metadata

  • Download URL: vivory_mcp_verification-0.14.0.tar.gz
  • Upload date:
  • Size: 36.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vivory_mcp_verification-0.14.0.tar.gz
Algorithm Hash digest
SHA256 8b196218eb1c7feed2097348e879adb52bae88ca16178776ffc39a25a1935079
MD5 3111bf432f26eabe916c65e008c0b9b6
BLAKE2b-256 d48634c1745a43870643767a2bff5bd6e46521ce3ccd345e7b929e88b868cf6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vivory_mcp_verification-0.14.0.tar.gz:

Publisher: publish-mcp-verification.yml on jayjodev/vivory-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vivory_mcp_verification-0.14.0-py3-none-any.whl.

File metadata

File hashes

Hashes for vivory_mcp_verification-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 90d6840088c53c26ad78770ebe61ba670d8726ee08eb8927aa041ce4e4f5373f
MD5 a0185791b44cb1b6b7beac9d9ab7ad4a
BLAKE2b-256 18f1bb07d3f0755d823c6e59ed43b921e876ae676414a9858ad5b6f828325a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for vivory_mcp_verification-0.14.0-py3-none-any.whl:

Publisher: publish-mcp-verification.yml on jayjodev/vivory-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page