VerditNxtGen
FreeNot checkedA cryptographic sidecar proxy that tests MCP tools for OWASP vulnerabilities before deployment. Automatically sandbox and audit your AI agents' tool calls to en
About
A cryptographic sidecar proxy that tests MCP tools for OWASP vulnerabilities before deployment. Automatically sandbox and audit your AI agents' tool calls to ensure secure infrastructure.
README
Add cryptographic compliance logging to any MCP server in one line.
VerditNxtGen runs a daily Ghost Swarm that sandbox-tests 190+ open-source MCP tools in Docker, scores them for deployment reliability, detects OWASP vulnerabilities at runtime, and generates HMAC-SHA256 signed manifests for SOC2 compliance.
This repository contains the client-side SDKs and proxy that connect your MCP infrastructure to the VerditNxtGen compliance ledger.
Packages
| Package | Language | Install |
|---|---|---|
| verditnxtgen-mcp-middleware | TypeScript | npm install verditnxtgen-mcp-middleware |
| verditnxtgen-mcp | Python | pip install verditnxtgen-mcp |
| Sidecar Proxy | Docker | docker pull ghcr.io/shopfarnow/verditnxtgen-sidecar |
Get an API key at verditnxtgen.com/connect-mcp — free tier, no credit card.
TypeScript — one line
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { withVerditLedger } from "verditnxtgen-mcp-middleware";
const server = withVerditLedger(
new McpServer({ name: "my-server", version: "1.0" }),
{ apiKey: process.env.VERDIT_API_KEY }
);
// Every tool call is now HMAC-signed and logged to the compliance ledger.
// Zero latency impact — telemetry posts fire-and-forget in the background.
Python — one decorator
from mcp.server.fastmcp import FastMCP
from verditnxtgen_mcp import verdit_ledger
mcp = FastMCP("my-server")
@mcp.tool()
@verdit_ledger(api_key="YOUR_VERDIT_API_KEY")
async def query_database(sql: str) -> str:
...
Docker Sidecar — zero code changes
services:
verdit-sidecar:
image: ghcr.io/shopfarnow/verditnxtgen-sidecar:latest
environment:
VERDIT_API_KEY: "${VERDIT_API_KEY}"
DOWNSTREAM_URL: "http://your-mcp-tool:3000"
ports:
- "8080:8080"
# Point your gateway at verdit-sidecar:8080 instead of your tool directly
What you get
After logging starts, the VerditNxtGen Intelligence Dashboard shows:
- Compliance Ledger: HMAC-SHA256 signed manifest for every tool — chain-of-custody proof for SOC2 Type II audits
- OWASP scan results: LLM01 prompt injection, LLM06 PII boundary, LLM08 vector weakness detection from live sandbox runs
- pass@k curves: Statistical deployment reliability (pass@1, pass@3, pass@5) across 700+ sandbox runs
- Cost intelligence: Compute cost per run across resource profiles
Links
- Live platform
- Intelligence Dashboard
- Score Methodology
- Get API key
- Main repo (private — proprietary Ghost Swarm engine)
License
MIT — see individual package directories.
Installing VerditNxtGen
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/OneZero-Network/verdit-mcp-suiteFAQ
Is VerditNxtGen MCP free?
Yes, VerditNxtGen MCP is free — one-click install via Unyly at no cost.
Does VerditNxtGen need an API key?
No, VerditNxtGen runs without API keys or environment variables.
Is VerditNxtGen hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install VerditNxtGen in Claude Desktop, Claude Code or Cursor?
Open VerditNxtGen on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare VerditNxtGen with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
