Skip to main content
Glama

Aevum Security

Server Details

Browse Aevum Security's Singapore cybersecurity services and submit a business enquiry.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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.4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: listing services, getting details of one service, and submitting an enquiry. There is no functional overlap.

Naming Consistency5/5

All tools use a consistent snake_case verb_noun pattern (list_services, get_service_details, submit_enquiry).

Tool Count5/5

Three tools is well-scoped for the server's purpose—covering listing, details, and enquiry submission without excess.

Completeness4/5

The set covers the core operations (list, get detail, contact). A minor gap is the lack of an update or cancel for enquiries, but this is acceptable for a simple enquiry system.

Available Tools

3 tools
get_service_detailsGet service detailsA
Read-onlyIdempotent
Inspect

Full details of one Aevum Security service, by slug from list_services.

ParametersJSON Schema
NameRequiredDescriptionDefault
serviceYes
Behavior4/5

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

Annotations already indicate safe read-only behavior. Description adds value by stating the result is 'full details' and associating the parameter with a slug from list_services, clarifying prerequisites.

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?

One sentence, no extraneous words. Front-loads the core purpose and includes necessary usage hint.

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 simple tool with rich annotations, description is adequate. 'Full details' is slightly vague on return structure but acceptable given no output schema and the tool's straightforwardness.

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?

With 0% schema coverage, description compensates by explaining the parameter is a slug from list_services. Although it does not enumerate the valid slug values, the enum in schema covers that. Adds meaningful context beyond schema.

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?

Description specifies a clear action (get full details), resource (one Aevum Security service), and method (by slug from list_services). It distinguishes from sibling list_services by focusing on a single service.

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?

Implicitly guides the agent to use after list_services to obtain the slug. No explicit when-not-to-use but context of sibling tools provides clear guidance.

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

list_servicesList servicesA
Read-onlyIdempotent
Inspect

List Aevum Security's cybersecurity services (slug, name, one-line summary). Use the slug with get_service_details or submit_enquiry.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare the tool as read-only, open world, idempotent, and non-destructive. The description adds the specific return fields (slug, name, one-line summary) but does not provide additional behavioral traits beyond what annotations convey.

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 extremely concise: two sentences that cover purpose, output, and usage guidance. No redundant or 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 zero parameters and no output schema, the description fully covers what the tool returns and how to use the results with sibling tools. It is complete for the tool's simplicity.

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?

The tool has no parameters (schema coverage 100% with zero parameters). The description does not need to add parameter details. Baseline 4 applies.

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 explicitly states the verb 'List', the resource 'Aevum Security's cybersecurity services', and the output fields (slug, name, one-line summary). It also distinguishes from sibling tools by mentioning their use with the slug.

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 clearly says to use this tool to list services and then use the slug with get_service_details or submit_enquiry. It provides context on when to use it (to get a list) and mentions related tools, though it doesn't explicitly state when not to use it.

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

submit_enquirySubmit an enquiryA
Destructive
Inspect

Send a business enquiry to Aevum Security on behalf of your principal. Creates a real enquiry (a human will respond within 1 business day) — only call with the principal's consent. Returns the enquiry id as proof of receipt. [MUTATING: requires an agent key passed as Authorization: Bearer on the HTTP connection]

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesContact person's name
emailYesReply-to email address
messageYesThe enquiry itself
serviceYesService slug from list_services, or 'general'
Behavior5/5

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

Annotations indicate readOnlyHint=false and destructiveHint=true, confirming mutation. The description adds crucial details: creates a real enquiry responded by a human, returns enquiry id as proof, and requires an agent key via Authorization header. This goes beyond annotations.

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?

Two sentences cover purpose, effect, authentication, and result. Every sentence earns its place with no redundancy or fluff.

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?

No output schema exists, but the description states it returns an enquiry id, which is sufficient. The tool is simple (4 required params, no nesting), and the description provides all necessary context: authentication, consent, real-world impact, and response.

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?

Schema coverage is 100%, so baseline is 3. The description does not elaborate on parameters beyond what the schema provides (e.g., name, email, message, service). The schema descriptions are already clear, so no additional value is needed.

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 states it sends a business enquiry on behalf of a principal, using the verb 'send' and specifying the resource ('business enquiry to Aevum Security'). It distinguishes from sibling tools (get_service_details, list_services) which are read-only and information retrieval.

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 says 'only call with the principal's consent', giving a critical usage condition. It implies use when submitting an enquiry, but does not explicitly state when not to use or mention alternatives. The context is clear enough for an agent.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources