mcp-agent-enterprise-guard
Click on "Deploy 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., "@mcp-agent-enterprise-guardcheck my agent logs for silent failures"
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.
mcp-agent-enterprise-guard
Compute trust scores, permission decisions, and silent-failure risk for AI agents — pure local computation, zero API cost.
Built for founders and teams who need lightweight AI governance (especially those validating products with Prevalid).
Why this exists
AI agents often fail silently: they return empty results, pick the wrong tool, or violate simple policies without raising an error. Enterprise-style workflows (Salesforce, ServiceNow, internal data) make this painful and expensive.
This MCP server gives your agent (or your ops team) four practical tools that run entirely on the data you already have — no external APIs, no monthly data bills.
Related MCP server: Agent Identity MCP Server
Tools
Tool | What it does |
| 0–100 reliability score + breakdown + recommendations |
| Finds empty/null responses that did not set |
| Simple allow/deny rule engine for agent actions |
| Human-readable markdown governance report |
Quick start (local)
git clone https://github.com/princeruhulofficial/mcp-agent-enterprise-guard.git
cd mcp-agent-enterprise-guard
pip install -e .
python -m agent_enterprise_guard.serverOr with FastMCP / Claude Desktop config:
{
"mcpServers": {
"agent-enterprise-guard": {
"command": "python",
"args": ["-m", "agent_enterprise_guard.server"]
}
}
}Example usage
Feed your agent run logs (list of dicts with tool_name, success, latency_ms, is_error, content) and get a reliability score + silent-failure list in seconds.
Monetization (MCPize)
Freemium model planned:
Free: limited daily calls for testing
Pro / Team / Enterprise tiers with higher limits and report export
License
MIT
Made for the Prevalid community — build AI systems people can actually trust.
Available Tools
4 toolsdetect_silent_failures_toolB
Flag tool calls that returned empty or null content without an error flag.
| Name | Required | Description | Default |
|---|---|---|---|
| logs | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry full behavioral disclosure. It states the detection condition but does not reveal whether the tool is read-only, what exact output it produces beyond flagging, whether it requires special permissions, or how it handles edge cases (e.g., logs with error flags). The description provides only a minimal behavioral snapshot.
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, well-structured sentence that is front-loaded with the action and outcome. It contains no filler or redundant information, making it maximally concise while still conveying the core purpose.
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?
The tool has a low complexity (one parameter, no nested objects) and an output schema, so return value details are not needed. However, the description omits crucial context about the input format, usage scenarios relative to sibling tools, and any behavioral caveats. It is adequate only for a superficial understanding, but not complete for an agent to invoke it correctly without additional external knowledge.
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 description coverage is 0%, and there is only one parameter ('logs') with no description of its expected structure or content. The description implies the tool consumes logs, but it does not explain what fields or formatting are required, nor does it compensate for the schema's lack of detail.
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 uses a specific verb ('Flag') and identifies the resource ('tool calls') with a clear condition ('returned empty or null content without an error flag'). It fully distinguishes this from sibling tools, which focus on scoring reliability, evaluating permissions, and generating audit reports.
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 when to use the tool (when there is a concern about empty/null results without errors) but does not explicitly state alternatives or exclusionary conditions. No mention of when not to use it or how it relates to sibling tools, leaving the context implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
evaluate_permission_toolC
Evaluate whether an agent action is allowed under the given policy rules.
Returns decision (allow/deny), matched rules, and risk score.
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| policy_rules | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing side effects, permissions, or error behavior. It only mentions return values ('decision, matched rules, and risk score'), which are likely covered by the output schema. It does not state whether the operation is read-only, whether it modifies state, or what happens with invalid input.
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 and front-loaded with the main purpose, followed by return-value summary. It avoids unnecessary words and is well-structured. However, it could be improved by integrating parameter 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?
Despite having an output schema and only two parameters, the tool involves nested objects and no annotations. The description does not cover prerequisites, edge cases, or input formatting, making it insufficient for an agent to confidently invoke the tool in all situations. It is more complex than a simple filtered-list tool and requires more context.
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 description coverage is 0%, yet the description does not explain the meaning or structure of the 'action' or 'policy_rules' parameters. It briefly references 'policy rules' but fails to define expected fields, formats, or examples, leaving the agent without enough information to construct valid inputs.
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's purpose with a specific verb ('Evaluate') and resource ('whether an agent action is allowed under the given policy rules'). It distinguishes itself from siblings by focusing on permission evaluation, whereas siblings address failure detection, reliability scoring, and audit reports.
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 implies a use case for policy compliance, but it does not explicitly mention exclusions, prerequisites, or refer to sibling tools for different scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_audit_report_toolA
Generate a markdown governance/audit report from logs (and optional pre-computed scores).
| Name | Required | Description | Default |
|---|---|---|---|
| logs | Yes | ||
| scores | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It mentions the output is 'markdown governance/audit report' and that it uses logs and optional scores, but it does not disclose side effects, permissions, or any specific behaviors beyond generation. Since generation is inherently non-destructive, this is a minor gap; however, additional context about the report's contents or how scores are integrated would improve transparency.
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 directly states the action and resource. There is no wasted text, and it conveys all essential information efficiently.
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 simple report-generation tool with an output schema, the description covers the key inputs and output format. It could be more complete by referencing the sibling tools as pipeline steps or clarifying the report's scope, but given its simplicity and the presence of an output schema, it's sufficiently 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?
Schema description coverage is 0%, so the description must compensate. It does by naming both parameters: 'logs' (the data source) and 'pre-computed scores' (optional input). This clarifies that 'logs' is the primary input and 'scores' is an optional enhancement, adding meaning beyond the bare schema definitions.
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's function: 'Generate a markdown governance/audit report from logs (and optional pre-computed scores).' It uses a specific verb ('Generate') and a specific resource ('markdown governance/audit report'), and it distinguishes itself from sibling tools by focusing on report generation rather than detection, scoring, or evaluation.
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 the tool is used when you have logs (and optionally pre-computed scores) and need a governance/audit report. While it doesn't explicitly mention alternatives or exclusions, the context of sibling tools (detect, score, evaluate) makes it clear this is the report-generation step. The phrase 'and optional pre-computed scores' hints at a preceding scoring step, providing useful context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
score_agent_reliability_toolA
Compute overall reliability score (0-100) from tool-call logs.
Each log entry should contain: tool_name, success (bool), latency_ms (number), is_error (bool), content (string or null).
| Name | Required | Description | Default |
|---|---|---|---|
| logs | Yes | ||
| weights | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It clarifies input requirements (log entry fields) but does not describe edge-case behavior, computation details, or handling of malformed data. As a read-only computation tool, it omits side-effect disclosures that would be needed for mutating tools.
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 two sentences, front-loaded with the tool's purpose, then a compact list of expected fields. Every sentence earns its place without redundancy.
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?
The presence of an output schema covers return values, but the description still leaves gaps: no mention of how weights affect scoring, no guidance on edge cases like empty logs or missing fields, and no interpretation of the reliability score. Enough for a simple tool, but missing key usage context.
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 schema has 0% description coverage. The description adds valuable semantics for the 'logs' array structure (expected fields like tool_name, success, latency_ms), but it does not explain the 'weights' parameter at all, leaving that parameter underspecified.
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 states a specific action ('Compute overall reliability score (0-100)') with a clear resource ('from tool-call logs') and output range. This distinguishes it from sibling tools like detect_silent_failures or generate_audit_report, which focus on different aspects.
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 you have tool-call logs and need a reliability score. However, it does not explicitly mention when not to use this tool or suggest alternatives among siblings, leaving some room for confusion in edge cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.1.0- First observed
detect_silent_failures_tool - First observed
evaluate_permission_tool - First observed
generate_audit_report_tool - First observed
score_agent_reliability_tool
TDQS
Scored across 4 tools
Each tool has a distinct purpose: detecting silent failures, scoring reliability, evaluating permissions, and generating audit reports. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun_tool pattern (detect_silent_failures_tool, score_agent_reliability_tool, etc.), making the API predictable and easy to navigate.
With 4 tools, the server is well-scoped for its enterprise guard purpose. Each tool serves a distinct function without unnecessary bloat or a thin set.
The tools cover the full lifecycle of governance and monitoring: detection, scoring, permission evaluation, and reporting. No obvious gaps exist for the server's stated purpose.
Maintenance
Related MCP Connectors
Identity, authorization, audit trails, and revocable permissions for AI agents accessing MCP tools.
AI governance MCP server for EU AI Act compliance and jurisdiction verification
MCP-native Trust Infrastructure for AI Agents. Persistent encrypted memory with Trust Quotient.
- gatewayOAuthai.sealgate
MCP gateway with runtime security policy, tool-call-level control, and audit of agent actions.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for AI compliance auditing. Scores agent outputs for hallucination liability under the EU AI Act, issues verifiable compliance stamps, and tracks audit history by agent.MIT
- AlicenseNot gradedqualityDmaintenanceMCP Server for AI agent identity and authorization. Create, verify, and manage agent identities with trust scores and scoped authorization tokens.MIT
- AlicenseAqualityDmaintenanceMCP server that enables AI agents to verify each other's trust scores, register, submit reviews, and find trusted agents before transacting.410 npmMIT

@vorionsys/mcp-serverofficial
AlicenseAqualityBmaintenanceMCP server for AI-agent governance using trust scoring, behavioral signals, and pre-flight action checks.106 npm1Apache 2.0