MEOK MCP Hardening MCP
This server provides automated security red-teaming and auditing for MCP servers, covering OWASP LLM Top 10 (2025) and MCP-specific risks, producing 0–100 scored and HMAC-signed security reports.
audit_server_json— Full OWASP LLM Top 10 + MCP-specific security audit on an entireserver.jsonconfiguration.audit_tool_description— Deep-scan a single tool description for prompt injection signals, destructive operation indicators, or spoofing attempts.check_destructive_surface— Fast check returning only destructive-surface findings (LLM08) — suitable as a CI/CD gate.check_supply_chain— Audit only supply-chain findings (LLM05), including dependency pinning and provenance checks.list_owasp_findings— Retrieve the canonical mapping of OWASP LLM Top 10 (2025) to MCP-Hardening rules as a reference guide.generate_hardened_template— Generate a minimal, pre-configuredserver.jsonstarter template that achieves a Grade A security score.sign_security_report— HMAC-seal an audit result to produce a cryptographically signed, verifiable security badge/report.
The server also includes built-in EU AI Act compliance coverage (Risk Management, Transparency, Bias Detection, FRIA Support, AI Content Watermarking) and integrates with the MEOK AI Labs ecosystem.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MEOK MCP Hardening MCPrun a security audit on my MCP server manifest"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Meok MCP Hardening MCP
mcp-name: io.github.CSOAI-ORG/meok-mcp-hardening-mcp
MEOK MCP Hardening MCP
MEOK MCP Hardening MCP — automated security red-team for any MCP server
MEOK MCP Hardening MCP — automated security red-team for any MCP server. OWASP LLM Top 10 (2025) + 5 MCP-specific risks → 0-100 score + HMAC-signed report. By MEOK AI Labs.
🚀 Quick Start
# Install via pip
pip install meok_mcp_hardening_mcp
# Or install via Smithery
npx -y @smithery/cli@latest install meok-mcp-hardening-mcp --client claudeRelated MCP server: tooltrust-mcp
✨ Features
MCP protocol compliant
Easy installation
Well-documented API
Production-ready
Active maintenance
📖 Documentation
🛡️ Compliance
This MCP server is built with EU AI Act compliance built-in:
✅ Article 9 — Risk Management System
✅ Article 13 — Transparency & Instructions for Use
✅ Article 15 — Bias Detection & Testing
✅ Article 26 — FRIA Support (where applicable)
✅ Article 50 — AI Content Watermarking (where applicable)
Need help getting compliant? Book a free 15-min diagnostic →
🏢 Enterprise
Need custom development, SLA guarantees, or white-label deployment?
Pro: $99/mo — Full MCP suite + EU AI Act tracking
Enterprise: $499/mo — Custom dev + SLA + Dedicated support
View Pricing → | Contact Sales →
🤝 Part of the MEOK Ecosystem
This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.
Domain | Purpose |
EU AI Act compliance marketplace | |
AI safety & monitoring | |
Sovereign AI platform | |
Legacy modernization |
📜 License
MIT © CSOAI-ORG
Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.
Legal
Built by MEOK AI Labs — trading name of CSOAI LTD, UK Companies House 16939677.
Founder: Nicholas Templeman (nicholas@meok.ai).
License: MIT.
Configuration
Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:
{
"mcpServers": {
"meok-mcp-hardening-mcp": {
"command": "uvx",
"args": ["meok-mcp-hardening-mcp"]
}
}
}Or: pip install meok-mcp-hardening-mcp then run the meok-mcp-hardening-mcp command (stdio transport).
Examples
Once configured, ask your assistant, for example:
"Use
audit_server_jsonto …""Use
audit_tool_descriptionto …""Use
check_destructive_surfaceto …"
Available Tools
7 toolsaudit_server_jsonCInspect
Full OWASP LLM Top 10 + MCP-specific security audit of an MCP server.json.
| Name | Required | Description | Default |
|---|---|---|---|
| server_json | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description must cover behavioral traits. It states 'audit' (suggesting read-only) but does not confirm idempotency, auth requirements, or potential side effects. No details on return format or pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no wasted words. However, extreme brevity borders on under-specification, but conciseness itself is good.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool performing a complex security audit with one richly structured input and no output schema, the description is woefully incomplete. It does not explain what the input should contain, what the output includes, or any actionable details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage (no parameter descriptions). The tool description adds no meaning beyond repeating the parameter name 'server_json'. The agent has no clue about required structure or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific scope: 'Full OWASP LLM Top 10 + MCP-specific security audit of an MCP server.json.' It distinguishes from siblings like audit_tool_description by specifying the audit framework and context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like check_destructive_surface or list_owasp_findings. The agent is left to infer from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
audit_tool_descriptionCInspect
Deep-scan a single tool description for injection / destructive / spoof signals.
| Name | Required | Description | Default |
|---|---|---|---|
| tool | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It mentions scanning for signals but doesn't explain effects, return values, or constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, concise and front-loaded, but sacrifices completeness for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complex object parameter, no output schema, and no annotations, the description is severely incomplete for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter 'tool' is an object with no description in schema or explanation in the tool description. 0% schema coverage means the description adds no meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the purpose: deep-scan a single tool description for specific signals (injection, destructive, spoof). However, it does not differentiate from sibling tools like 'audit_server_json' or 'check_destructive_surface'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives, or any prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_destructive_surfaceCInspect
Return only the destructive-surface findings (LLM08) — fast gate for CI.
| Name | Required | Description | Default |
|---|---|---|---|
| server_json | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must disclose behavioral traits. It says 'fast gate' implying lightweight but does not explain side effects, state changes, or behavior on invalid input. Lack of detail on whether it modifies data or is read-only.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is a single sentence, concise but overly brief. It could add essential parameter and usage details without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, one undocumented nested object parameter, and low schema coverage, the description is insufficient. It fails to specify server_json format, return structure, or error conditions, making the tool hard to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has one required object parameter 'server_json' with 0% description coverage. The description provides no guidance on the parameter's structure, purpose, or expected content, leaving the agent without crucial context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns 'destructive-surface findings (LLM08)' and is a 'fast gate for CI'. It specifies the exact subset (LLM08) and distinguishes from siblings like 'list_owasp_findings' or 'check_supply_chain' by limiting scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions 'fast gate for CI' providing usage context, but does not explicitly state when not to use it or suggest alternatives. No exclusion criteria or comparison to sibling tools is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_supply_chainCInspect
Return only supply-chain findings (LLM05) — pin + provenance audit.
| Name | Required | Description | Default |
|---|---|---|---|
| server_json | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It states it 'return only supply-chain findings', indicating a filtering behavior, but does not describe what 'pin + provenance audit' entails or any side effects. It adds some context but remains vague.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently states the purpose. It is appropriately sized with no wasted words, though it could be slightly more detailed.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and the nested object parameter, the description is incomplete. It fails to explain the parameter or the meaning of 'pin + provenance audit', leaving gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter 'server_json' with no description (0% coverage). The tool description does not explain the parameter at all, providing no added meaning beyond the schema name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'return' and the resource 'supply-chain findings (LLM05)', and mentions 'pin + provenance audit' for specificity. It differentiates from sibling tools like 'list_owasp_findings' by focusing on a specific category.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus siblings or when not to use it. The description does not mention alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_hardened_templateAInspect
Return a minimal-passing server.json starter that scores A.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses that the tool generates a starter template but does not explain what 'scores A' means, whether it is destructive, requires permissions, or has side effects. Minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence of 9 words. Every word is meaningful with no redundancy. It is appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and no output schema, the description provides a clear purpose. However, it assumes the agent understands 'scores A' without further explanation. For a minimal tool, this is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema coverage is 100% (empty). The description adds no parameter details, but with no parameters, the baseline is 4. It does not explain why there are no options, but that is not a major gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a server.json starter that 'scores A', indicating a specific quality. The verb 'generate' and resource 'template' are present, and it is easily distinguishable from sibling tools like audit_server_json and sign_security_report.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a minimal-passing template is needed, but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites. Siblings suggest audit and checking contexts, but this is not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_owasp_findingsAInspect
Return the canonical OWASP LLM Top 10 (2025) → MCP-Hardening rule map.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It states the return value, but does not explicitly confirm it is read-only, idempotent, or safe to call frequently. The absence of side effects is implied but not stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded and to the point. Every word is necessary and adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters, no output schema, and is a straightforward list retrieval, the description is sufficient. However, more detail about the output format (e.g., key-value structure) could enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so the description does not need to add meaning beyond the schema. The baseline for zero parameters is 4, and the description does not contradict or miss any parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns the canonical OWASP LLM Top 10 (2025) to MCP-Hardening rule map, using a specific verb and resource. It distinguishes from sibling tools like audit_server_json and check_destructive_surface, which focus on auditing and checking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description lacks any context about typical use cases or prerequisites, though the tool's simplicity partially mitigates this.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sign_security_reportCInspect
HMAC-seal an audit result so it can be published as a signed badge.
| Name | Required | Description | Default |
|---|---|---|---|
| audit_result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It mentions HMAC-sealing but does not explain side effects, return format, or whether the input is modified. The behavioral disclosure is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (one sentence) but at the cost of completeness. It front-loads the action but omits necessary details, making it efficient but underinformative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema, annotations, and parameter documentation, the description is far from complete. It does not explain return values, behavior, or constraints, leaving critical gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'audit_result' is an object with no schema description (0% coverage). The description adds no information about its structure or required fields, leaving the agent without guidance on what to pass.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (HMAC-seal) and the resource (audit result) and the purpose (publish as signed badge). It is specific and distinguishes from sibling tools that focus on auditing or checking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, no prerequisites, and no conditions for use. It only states what it does, not why or when.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct security audit task: full server audit, per-description scan, specific vulnerability checks, template generation, listing rules, and signing reports. No overlap in purpose.
Tool names use underscore and follow verb_noun pattern, but verbs vary: 'audit', 'check', 'generate', 'list', 'sign'. While readable, the mix of verbs reduces consistency compared to a uniform pattern.
7 tools is well-scoped for a security hardening server. Each tool addresses a distinct need without being too few or excessive.
Covers core audit workflows: full server audit, per-tool scan, specific checks (destructive, supply chain), template generation, reference map, and report signing. Minor gap: no direct apply/patch tool, but overall comprehensive.
Maintenance
Related MCP Connectors
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Paid remote MCP for LLM security scans, jailbreak checks, analytics, checkout, and readiness.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceSecurity scanner for MCP servers and AI-generated code. Detects leaked API keys, PII, prompt injection, and MCP misconfigs with A-F security grades.MIT
- AlicenseNot gradedqualityAmaintenanceScans MCP servers for prompt injection, supply chain attacks, excessive permissions, and code execution risks. Includes an offline blacklist that catches known-compromised packages like LiteLLM 1.82.7/1.82.8 and Trivy with zero latency.19MIT
- AlicenseAqualityCmaintenanceScans MCP servers for prompt-injection, tool-poisoning, and SSRF vulnerabilities using 30+ canonical rules across 5 severity tiers, with optional signed safety reports for procurement.5MIT
- AlicenseNot gradedqualityAmaintenanceScans MCP servers and AI tools for security risks, providing 4-dimensional scoring and badges, with optional guardrail MCP for auto-protection.2MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/CSOAI-ORG/csoai-mcp-hardening-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server