VerditNxtGen
VerditNxtGen MCP Suite
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 |
TypeScript |
| |
Python |
| |
Docker |
|
Get an API key at verditnxtgen.com/connect-mcp — free tier, no credit card.
Related MCP server: MCP Gateway
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 directlyWhat 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
Main repo (private — proprietary Ghost Swarm engine)
License
MIT — see individual package directories.
This server cannot be installed
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ShopFarnow/verdit-mcp-suite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server