CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

HiveAudit Readiness

srotzin/hive-mcp-audit-readiness
HTTPregistry active
Summary

Wraps the HiveAudit Readiness endpoint to compute multi-jurisdictional AI compliance scores in a single call. You give it org country, data volume, agent count, inference calls, and sectors, and it returns penalty exposure in EUR and USD sourced from EU AI Act Article 99, Colorado AI Act, CCPA, SB 942, NYC LL 144, and HIPAA, plus Article-level gaps and the recommended audit tier. Exposes two tools: audit_readiness_score for the full assessment and audit_get_tier_pricing for the four published tier brackets. Runs over streamable-http at hive-mcp-audit-readiness.onrender.com/mcp, no auth, 10 requests per IP per hour. Reach for it when you need fast regulatory math and want to surface penalty floors and compliance deadlines without spreadsheets.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Hive Civilization MCP

hive-mcp-audit-readiness

EU AI Act · Colorado AI Act · CCPA · SB 942 · LL 144 · HIPAA — readiness scoring with sourced penalty math

Glama Live Release License CodeQL OpenSanctions

https://hive-mcp-audit-readiness.onrender.com/mcp


What this is

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

Tools

ToolDescription
audit_readiness_scoreCompute a multi-jurisdictional readiness score: penalty exposure (EUR + USD), Article-citing compliance gaps, recommended audit tier, nearest deadline.
audit_get_tier_pricingGet the four published HiveAudit tier prices and brackets (STARTER $500 / STANDARD $1,500 / ENTERPRISE $2,500 / FEDERAL $7,500/yr).

Backend endpoints

MethodPathPurpose
POST/v1/audit/readinessMulti-jurisdictional readiness score

Run locally

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

Connect from an MCP client

Claude Desktop, Cursor, Manus

{
  "mcpServers": {
    "hive-audit-readiness": {
      "url": "https://hive-mcp-audit-readiness.onrender.com/mcp",
      "transport": "streamable-http"
    }
  }
}

Coinbase AgentKit (Model Context Protocol extension)

import { AgentKit } from "@coinbase/agentkit";
import { McpClient } from "@modelcontextprotocol/sdk/client";

const audit = new McpClient();
await audit.connect({
  url: "https://hive-mcp-audit-readiness.onrender.com/mcp",
  transport: "streamable-http"
});

const agentKit = await AgentKit.from({
  cdpApiKeyId: process.env.CDP_API_KEY_ID,
  cdpApiKeySecret: process.env.CDP_API_KEY_SECRET,
  mcpClients: [audit]
});

GOAT SDK

GOAT SDK consumes any MCP server via its @goat-sdk/plugin-mcp adapter — point at https://hive-mcp-audit-readiness.onrender.com/mcp.

Pulse MCP

Auto-crawled from the Official MCP Registry entry io.github.srotzin/hive-mcp-audit-readiness.

Glama / MCP.so / mcpverse / mcp-hunt / mkinf

Auto-crawled from this GitHub repo.

Example call

curl -s -X POST https://hive-mcp-audit-readiness.onrender.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc":"2.0",
    "id":1,
    "method":"tools/call",
    "params":{
      "name":"audit_readiness_score",
      "arguments":{
        "organization_country":"DE",
        "jurisdictions":["EU"],
        "data_volume_records":500000,
        "agent_count":10,
        "monthly_inference_calls":5000000,
        "sectors":["finance"],
        "frameworks":["eu_ai_act","gdpr"],
        "company":"Example GmbH"
      }
    }
  }'

Returns penalty exposure (€15M EU AI Act Art 99), specific gaps (Articles 12, 13), and the recommended ENTERPRISE tier ($2,500) with a 30-day Professional trial CTA.

Disclaimers

  • This is an automated readiness score, not legal advice. Engage qualified counsel for binding compliance opinions.
  • Penalty math reflects statutory ceilings as of 2026-04-30. Statutes change — verify the regulation source if relying on a specific number.
  • The HiveAudit Professional trial is a 30-day evaluation. The four tier prices are one-time bundles or annual subscriptions; see thehiveryiq.com/pricing.

License

MIT — see LICENSE.


Brand gold: Pantone 1245 C / #C08D23. Treasury (EIP-55): 0x15184Bf50B3d3F52b60434f8942b7D52F2eB436E (Base mainnet).

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
TransportHTTP
UpdatedMay 1, 2026
View on GitHub