Skip to main content
Glama

Server Details

Formally-verified injection/exfiltration detector for AI agents (MCP-02).

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
viridis-security/mcp-services-sdk
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools target completely distinct aspects: one screens untrusted input for injection patterns, while the other analyzes agent traces for policy violations. There is no overlap in their purpose or output, making misselection unlikely.

Naming Consistency5/5

Both tools follow a consistent 'detect_' + noun phrase naming convention (detect_injection, detect_trace_tool_policy). The pattern is clear and predictable, and there is no mixing of styles.

Tool Count4/5

With only two tools, the set is slightly under the typical 3-15 range, but it feels appropriately scoped for a specialized security detector. Each tool covers a distinct and essential part of the domain, so the small count is justified.

Completeness4/5

The two tools cover the primary detection needs: input screening and trace analysis. Minor gaps exist (e.g., no explicit tool for sanitization or for analyzing output exfiltration), but the core injection-detection workflows are well covered with no dead ends.

Available Tools

2 tools
detect_injectionDetect adversarial injectionAInspect

Screen untrusted input for prompt/tool injection, exfiltration, and obfuscation before an agent consumes it. Returns a verdict (clean|suspicious|attack), probability, bits-at-risk (upper bound on adversarial capture per the Adversarial Landauer bound), matched canon patterns, and a recommended action (allow|sanitize|reject|escalate). Backed by Aristotle-verified theorems T-IB-02/T-IB-06/T-IB-01.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputYesThe untrusted text/data to screen.
agentIdNoOptional: for MCP-01 envelope cross-check.
contextNoOptional: the agent's role/system prompt; helps calibrate.
certaintyNoOperating point. Default standard.

Output Schema

ParametersJSON Schema
NameRequiredDescription
signalsNo
verdictYes
backedByNo
bitsAtRiskYes
probabilityYes
operatingPointNo
matchedPatternsNo
recommendedActionYes
explainabilityTokenNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully covers behavior: it states the tool returns a verdict, probability, bits-at-risk, matched canon patterns, and recommended action. It also references Aristotle-verified theorems, adding authoritative context. No destructive behavior is implied, consistent with a screening tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences: first states the purpose, second lists return values. It is extremely concise and front-loaded, with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (context signal) and full schema description coverage, the description is sufficient. It explains what the tool does, when to use it, and what it returns, without needing to repeat output schema details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with parameter descriptions, but the tool description adds value by explaining the domain (screen for injection types) and the return fields, which implicitly clarify the 'input' and 'certainty' parameters. The description enhances meaning beyond the schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The title and description clearly state the tool's purpose: screening untrusted input for prompt/tool injection, exfiltration, and obfuscation. The verb 'Screen' and resource 'untrusted input' are specific, and the description distinguishes it from potential sibling tools by detailing the types of attacks detected.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states to use this tool 'before an agent consumes' untrusted input, providing clear context. However, it lacks explicit when-not-to-use instructions or alternatives, which is acceptable given no sibling tools exist.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

detect_trace_tool_policyDetect trace tool-policy violationsAInspect

Analyze an agent trace for the Gray Swan Wave 16 class: untrusted retrieved/tool output causing a tool call outside the user-declared per-turn allowlist. Returns trace counts, unauthorized tool-call evidence, canon mapping VC-AI-TOOL-0001, and claim-boundary guardrails. Backed by T-IB-25/T-IB-29/T-IB-36.

ParametersJSON Schema
NameRequiredDescriptionDefault
traceNoSingle agent trace with user_prompt, allowed_tools, and events[].
tracesNoOptional batch of agent traces.
targetNameNoOptional display name for the assessed target.

Output Schema

ParametersJSON Schema
NameRequiredDescription
modeYes
tracesNo
canonIdNo
summaryYes
verdictYes
probabilityNo
theoremRefsNo
claimBoundaryNo
reviewPriorityYes
recommendedActionYes
explainabilityTokenNo
customerSystemProvedNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the tool's return values (trace counts, unauthorized tool-call evidence, canon mapping, claim-boundary guardrails) and backing policy references, which gives the agent a clear sense of what to expect. It does not explicitly state side-effect or permission requirements, but 'Analyze' strongly implies read-only behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the primary purpose, and includes return-value details and backing references. It is efficient but the backing reference (T-IB-25/T-IB-29/T-IB-36) is cryptic and may not add immediate value for an AI agent, preventing a perfect score.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with an output schema and a well-described input schema, the description covers the core purpose, return categories, and backing context. The main gap is the absence of explicit usage guidelines relative to the sibling detect_injection, but overall it is sufficiently complete for the agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for all three parameters, so the baseline is 3. The tool description adds no additional semantic detail about the parameters beyond what the schema already provides, so no extra credit is warranted.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's function with a specific verb ('Analyze') and resource ('agent trace'), and names the exact violation class ('untrusted retrieved/tool output causing a tool call outside the user-declared per-turn allowlist'). This level of specificity distinguishes it from the sibling detect_injection.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for analyzing Gray Swan Wave 16 tool-policy violations, but does not explicitly state when to use it versus detect_injection or when not to use it. There is no explicit alternative guidance or exclusion criteria, only an implied context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    A security MCP proxy that monitors and blocks data exfiltration between AI agents and their tools by detecting toxic flows (untrusted → sensitive → egress) deterministically with zero LLM calls in the decision path.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Adaptive security for AI agents: assess inputs for prompt injection, scan outputs for credential/PII leaks, teach new attack patterns to semantic memory, harden prompts, and monitor metrics. Runs locally via MCP stdio.
    Apache 2.0
  • A
    license
    -
    quality
    D
    maintenance
    A defensive gateway and firewall for AI agents using MCP servers, scanning tool calls, responses, and manifests for prompt injection, secrets, dangerous commands, and drift before allowing execution.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.