zkshare-mcp (sp0oby/zkShare) is an MCP server listed on the M8ven Trust Index. It scores 52 out of 100, grade D. It declares 6 tools. No publisher has claimed this listing.

D
Caution
52/100

zkshare-mcp

An MCP server that provides tools for privacy-oriented context API including encrypted fact storage, commitment-based proofs, and semantic search, enabling users, AI agents, and back-office systems to securely manage and prove personal facts without exposing raw data.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

sp0oby

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 13 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 10 credentials: OPENAI_API_KEY, OPENROUTER_API_KEY, STRIPE_SECRET_KEY, STRIPE_WEBHOOK_SECRET, UPSTASH_REDIS_REST_TOKEN, ZKSHARE_API_KEY, ZKSHARE_ENCLAVE_JWT_SECRET, ZKSHARE_ENCRYPTION_SECRET, ZKSHARE_PROOF_SECRET, ZKSHARE_TEST_API_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes6 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

zkshare_store

Encrypt and store a fact (server-sealed). Same as REST operation store with value.

zkshare_prove

Produce a yes/no answer and signed proof envelope for a stored server-sealed fact.

zkshare_share

Like prove, plus issue a time-bound share token for a recipient agent id.

zkshare_search

Semantic search over stored server-sealed facts for this API key.

zkshare_sandbox

Run an allow-listed sandbox action (e.g. calculate_travel_budget, calculate_budget, analyze_spending).

zkshare_verify_proof

Verify a zkshare proof envelope (from prove/share) without reading fact plaintext.

// known CVEs in dependencies13 high5 medium7 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

highnext@16.2.4GHSA-267c-6grr-h53f

Next.js has a Middleware / Proxy bypass in App Router applications via segment-prefetch routes

highnext@16.2.4GHSA-26hh-7cqf-hhc6

Next.js has a Middleware / Proxy bypass in App Router applications via segment-prefetch routes - Incomplete Fix Follow-Up

highnext@16.2.4GHSA-36qx-fr4f-26g5

Next.js has a Middleware / Proxy bypass in Pages Router applications using i18n

highnext@16.2.4GHSA-492v-c6pp-mqqv

Next.js has a Middleware / Proxy bypass through dynamic route parameter injection

highnext@16.2.4GHSA-6gpp-xcg3-4w24

Next.js: Middleware / Proxy bypass in App Router applications using Turbopack and single locale

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configBASE_URL
🔐 secretOPENAI_API_KEY
configOPENAI_CHAT_MODEL
configOPENAI_EMBEDDING_MODEL
🔐 secretOPENROUTER_API_KEY
configOPENROUTER_APP_TITLE
configOPENROUTER_CHAT_MODEL
configOPENROUTER_EMBEDDING_MODEL
configOPENROUTER_HTTP_REFERER
configSTRIPE_PRICE_ENTERPRISE
configSTRIPE_PRICE_PRO
configSTRIPE_PRICE_STARTER
🔐 secretSTRIPE_SECRET_KEY
🔐 secretSTRIPE_WEBHOOK_SECRET
configTEST_BASE_URL
🔐 secretUPSTASH_REDIS_REST_TOKENUpstash Redis is configured (UPSTASH_REDIS_REST_URL + ); the in-process rate-limit fallback is for local development only.
configUPSTASH_REDIS_REST_URLUpstash Redis is configured ( + UPSTASH_REDIS_REST_TOKEN); the in-process rate-limit fallback is for local development only.
🔐 secretZKSHARE_API_KEY"": "zk_live_…",
configZKSHARE_API_URL"": "https://zkshare.io"
configZKSHARE_CORS_ORIGINis an explicit comma-separated allow list of origins. is for unauthenticated demos only.
configZKSHARE_DISABLE_EXTERNAL_LLM
🔐 secretZKSHARE_ENCLAVE_JWT_SECRETHS256 secret for sandbox attestations (minimum 32 characters).
configZKSHARE_ENCLAVE_PUBLIC_KEY_STUB
🔐 secretZKSHARE_ENCRYPTION_SECRETserver-side AES-256-GCM master secret (scrypt-derived; minimum
configZKSHARE_OPENROUTER_DENY_DATA_COLLECTION
🔐 secretZKSHARE_PROOF_SECRETHMAC secret for commitments and proof envelopes (minimum 16
🔐 secretZKSHARE_TEST_API_KEY
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployNEXT_PUBLIC_SITE_URL
deployNEXT_PUBLIC_SUPABASE_ANON_KEY
deployNEXT_PUBLIC_SUPABASE_URL
deploySUPABASE_SERVICE_ROLE_KEY
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

6/6 tools missing one or more hints — zkshare_store (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); zkshare_prove (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); zkshare_share (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +3 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 11 high severity in production deps — next@16.2.4 (high), next@16.2.4 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dev dependencies

2 critical/high in dev-only deps (does not ship to users)

Upgrade dev dependencies when convenient.

Dependency freshness

1/59 production deps stale: server-only@2022-09-03 (3.9y)

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/sp0oby/zkshare?variant=verified)](https://m8ven.ai/mcp/sp0oby/zkshare)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: db2f6267f7d90dba0cf2948ed19e0dc08ef94c0d
code hash: e30878d4438397e7fa137cf39e3b6dd3ebe9453e2d925ed7b610e798d9091c49
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client