Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"hive-audit-readiness": {
"url": "https://hive-mcp-audit-readiness.onrender.com/mcp",
"transport": "streamable-http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
hive-mcp-audit-readiness is a Model Context Protocol (MCP) server that wraps the live HiveAudit Readiness assessment endpoint at https://hivemorph.onrender.com/v1/audit/readiness. It computes a multi-jurisdictional AI compliance readiness score in a single call: penalty exposure in EUR and USD, Article-citing compliance gaps, recommended audit tier, and the nearest enforcement deadline.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'npm' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
Packing does not respect root-level ignore files in workspaces
### Impact `npm pack` ignores root-level `.gitignore` & `.npmignore` file exclusion directives when run in a workspace or with a workspace flag (ie. `--workspaces`, `--workspace=<name>`). Anyone who has run `npm pack` or `npm publish` with workspaces, as of [v7.9.0](https://github.com/npm/cli/releases/tag/v7.9.0) & [v7.13.0](https://github.com/npm/cli/releases/tag/v7.13.0) respectively, may be affected and have published files into the npm registry they did not intend to include. ### Patch - Up
Incorrect Permission Assignment for Critical Resource in NPM
An issue was discovered in an npm 5.7.0 2018-02-21 pre-release (marked as "next: 5.7.0" and therefore automatically installed by an "npm upgrade -g npm" command, and also announced in the vendor's blog without mention of pre-release status). It might allow local users to bypass intended filesystem access restrictions because ownerships of /etc and /usr directories are being changed unexpectedly, related to a "correctMkdir" issue.
Local Privilege Escalation in npm
Affected versions of `npm` use predictable temporary file names during archive unpacking. If an attacker can create a symbolic link at the location of one of these temporary file names, the attacker can arbitrarily write to any file that the user which owns the `npm` process has permission to write to, potentially resulting in local privilege escalation. ## Recommendation Update to version 1.3.3 or later.
npm CLI exposing sensitive information through logs
Versions of the npm CLI prior to 6.14.6 are vulnerable to an information exposure vulnerability through log files. The CLI supports URLs like `<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>`. The password value is not redacted and is printed to stdout and also to any generated log files.
npm Vulnerable to Global node_modules Binary Overwrite
Versions of the npm CLI prior to 6.13.4 are vulnerable to a Global node_modules Binary Overwrite. It fails to prevent existing globally-installed binaries to be overwritten by other package installations. For example, if a package was installed globally and created a `serve` binary, any subsequent installs of packages that also create a `serve` binary would overwrite the first binary. This will not overwrite system binaries but only binaries put into the global node_modules directory. This b
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
App framework, testing framework, and inspector for MCP Apps.
MCP Security Weekly
Get CVE alerts and security updates for io.github.srotzin/hive-mcp-audit-readiness and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
EU AI Act · Colorado AI Act · CCPA · SB 942 · LL 144 · HIPAA — readiness scoring with sourced penalty math
https://hive-mcp-audit-readiness.onrender.com/mcp
hive-mcp-audit-readiness is a Model Context Protocol (MCP) server that wraps the live HiveAudit Readiness assessment endpoint at https://hivemorph.onrender.com/v1/audit/readiness. It computes a multi-jurisdictional AI compliance readiness score in a single call: penalty exposure in EUR and USD, Article-citing compliance gaps, recommended audit tier, and the nearest enforcement deadline.
Penalty math is sourced from the regulations directly:
EU AI Act — Reg 2024/1689 Art 99 (€15M floor, €35M cap, 3% / 7% turnover)
Colorado AI Act — CRS § 6-1-1701 ($20K per consumer violation, effective 2026-06-30)
California SB 942 — Cal. Bus. & Prof. § 22757 ($5K / violation / day)
CCPA — Cal. Civ. § 1798.155 ($7,500 per violation)
NYC LL 144 — § 20-871 ($1,500 per occurrence)
HIPAA — 45 CFR § 160.404 ($1.5M annual cap)
NIST AI RMF + ISO 42001 — gap analysis only, no penalty math
Protocol: MCP 2024-11-05 over Streamable-HTTP / JSON-RPC 2.0
Transport: POST /mcp
Discovery: GET /.well-known/mcp.json
Health: GET /health
Auth: none — free
Rate limit: 10 requests / IP / hour
Brand gold: Pantone 1245 C / #C08D23
| Tool | Description |
|---|---|
audit_readiness_score | Compute a multi-jurisdictional readiness score: penalty exposure (EUR + USD), Article-citing compliance gaps, recommended audit tier, nearest deadline. |
audit_get_tier_pricing | Get the four published HiveAudit tier prices and brackets (STARTER $500 / STANDARD $1,500 / ENTERPRISE $2,500 / FEDERAL $7,500/yr). |
| Method | Path | Purpose |
|---|---|---|
POST | /v1/audit/readiness | Multi-jurisdictional readiness score |
git clone https://github.com/srotzin/hive-mcp-audit-readiness.git
cd hive-mcp-audit-readiness
npm install
npm start
# server up on http://localhost:3000/mcp
curl http://localhost:3000/health
curl http://localhost:3000/.well-known/mcp.json
{
"mcpServers": {
"hive-audit-readiness": {
"url": "https://hive-mcp-audit-readiness.onrender.com/mcp",
"transport": "streamable-http"
}
}
}
import { AgentKit } from "@coinbase/agentkit";
import { McpClient } from "@modelcontextprotocol/sdk/client";
const audit = new McpClient();
await au
... [View full README on GitHub](https://github.com/srotzin/hive-mcp-audit-readiness#readme)