Skip to main content
Glama

Server Details

AI agent email, vault, and calendar. Tamper-evident audit trail for EU AI Act compliance.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
piiiico/agentlair
GitHub Stars
1

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 3.7/5 across 15 of 15 tools scored. Lowest: 3.1/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action within its domain (calendar, email, vault, trust, delegation). No two tools have overlapping purposes; the prefixes (calendar_, vault_) and unique verbs (delegate_task, preflight_trust_check) make them easily distinguishable.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case. Even compound names like preflight_trust_check adhere to the structure. No mixing of conventions.

Tool Count5/5

15 tools cover multiple subsystems (calendar 4, email 5, vault 4, trust/delegation 2). This is well-scoped for an agent platform – not too few to be insufficient, not too many to be overwhelming.

Completeness4/5

Core CRUD operations are present for calendar (except update) and vault (full CRUD). Email has reading/sending/address management but lacks delete or reply. Delegation lacks status tracking. Minor gaps that agents can work around.

Available Tools

15 tools
calendar_create_eventBInspect

Create a calendar event on your AgentLair calendar. Events are published via iCal feed for human subscription (Google Calendar, Apple Calendar, Outlook).

ParametersJSON Schema
NameRequiredDescriptionDefault
endYesEvent end time in ISO 8601 format. Date-only ("2026-03-21") or datetime ("2026-03-20T15:00:00Z")
startYesEvent start time in ISO 8601 format. Date-only ("2026-03-20") or datetime ("2026-03-20T14:00:00Z")
summaryYesEvent title / summary (required)
locationNoOptional event location (address, URL, or room name)
attendeesNoOptional list of attendee email addresses
descriptionNoOptional event description / notes
Behavior2/5

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

No annotations are provided, so the description must compensate. It only states the basic action and iCal publishing, but lacks details on mutation behavior (e.g., idempotency, overwrite rules, required permissions) or side effects beyond the feed. This is insufficient for a creation 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?

Two sentences, front-loaded with the main action, no redundant words. Every sentence adds value: first states purpose, second explains the iCal publication effect.

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

Completeness2/5

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

Given 6 parameters (3 required) and no output schema, the description is too brief. It fails to mention what the response contains (e.g., event ID, status) or how to verify success. For a creation tool, this is a notable gap.

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 description coverage is 100% with descriptions for all 6 parameters. The description adds no additional meaning beyond the schema, so baseline score of 3 is appropriate.

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 'Create a calendar event on your AgentLair calendar', clearly identifying the verb (create) and resource (calendar event). It distinguishes from sibling tools like calendar_delete_event and calendar_list_events by focusing on creation.

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 mentions events are published via iCal feed, giving context on the outcome, but does not explicitly state when to use this tool versus alternatives like calendar_list_events or calendar_get_feed. No guidance on preconditions or when not to use.

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

calendar_delete_eventAInspect

Delete an event from your AgentLair calendar by event ID. Use calendar_list_events to find event IDs.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesEvent ID to delete (e.g. evt_abc123...)
Behavior2/5

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

No annotations provided, so description must cover behavioral traits. Only states the action; does not mention potential irreversible deletion, error handling, or permission requirements. Minimal disclosure beyond the operation.

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, no redundant information. First sentence states purpose, second provides actionable guidance. Highly efficient.

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 deletion tool, the description covers essential actions and input sourcing. No output schema needed; deletion return is standard. Lacks some behavioral details but adequate for use.

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 has 100% coverage for the single parameter 'id' with an example value. Description adds value by linking to calendar_list_events for finding event IDs, providing context beyond the 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?

Clear verb ('Delete'), resource ('event'), and method ('by event ID'). Distinguishes from sibling tools like calendar_list_events (list vs. delete) and calendar_create_event (create vs. delete).

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?

Explicitly instructs to use calendar_list_events to obtain event IDs, providing context for when to use this tool. Does not explicitly state when not to use, but the guidance implies prerequisite action.

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

calendar_get_feedAInspect

Get the public iCal subscription URL for your AgentLair calendar. Share this URL with calendar apps (Google Calendar, Apple Calendar, Outlook) so humans can subscribe and see agent-created events.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

The description discloses that the tool returns a URL for subscription, which is the main behavioral trait. However, it does not mention any potential side effects, permissions, or limitations (e.g., whether the URL is static or changes). Since no annotations are provided, the description carries the full burden, and it is adequate but minimal.

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 long, front-loads the core purpose, and contains no unnecessary words. Every sentence adds value.

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?

For a tool with no parameters and a simple return value (a URL), the description fully explains what the tool does and how to use the result. No output schema exists, so the description effectively covers the return value.

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, so the description does not need to add parameter meaning. Baseline for 0 parameters is 4, and the description is appropriate.

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 the tool retrieves a public iCal subscription URL for the calendar, distinguishing it from sibling tools like calendar_list_events which list events, and calendar_create_event which creates events.

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 explains that the returned URL should be shared with calendar apps for subscription, giving clear usage context. It does not explicitly mention when not to use or alternative tools, but the context is sufficient given sibling differentiation.

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

calendar_list_eventsBInspect

List events on your AgentLair calendar. Optionally filter by date range.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoOptional end of date range filter (ISO 8601, e.g. "2026-03-31")
fromNoOptional start of date range filter (ISO 8601, e.g. "2026-03-01")
Behavior2/5

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

With no annotations, the description must disclose behavioral traits. It does not mention if the operation is read-only, return format, pagination, or any limits. The name implies reading but not explicitly.

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, front-loaded with key information, no wasted words. Efficient and clear.

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

Completeness3/5

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

For a simple list tool with no output schema and two optional params, the description is somewhat minimal. It lacks return format, ordering, and any behavioral caveats, but is adequate for basic use.

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% and both parameters have descriptions. The description adds 'Optionally filter by date range', which is already implied by the schema. No additional meaning beyond the schema.

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

Purpose4/5

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

The description clearly states the tool lists events on the AgentLair calendar and mentions optional date range filtering. However, it does not differentiate from the sibling tool 'calendar_get_feed', which may have a similar purpose.

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

Usage Guidelines2/5

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 'calendar_get_feed' or 'calendar_create_event'. There is no mention of when not to use it or prerequisites.

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

check_inboxBInspect

Check the inbox for an @agentlair.dev email address. Returns recent messages with sender, subject, and received time.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of messages to return (default: 10, max: 50)
addressYesThe @agentlair.dev address to check (e.g. mybot@agentlair.dev)
Behavior2/5

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 behavioral disclosure. It states the tool returns recent messages with specific fields, which is useful, but lacks details on permissions, rate limits, error conditions, or whether it's read-only (implied but not explicit). For a tool with zero annotation coverage, this is a significant gap in transparency.

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 concise and front-loaded, consisting of two clear sentences that directly state the tool's action and return value. There is no wasted language or redundancy, making it efficient and easy to parse.

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

Completeness3/5

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

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and return fields, but lacks details on usage context, behavioral traits, or error handling. Without annotations or output schema, it should do more to compensate, but it meets the bare minimum for a read operation.

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 description coverage is 100%, so the schema already documents both parameters ('limit' and 'address') with details like defaults and examples. The description adds no additional parameter semantics beyond what's in the schema, such as clarifying the 'address' format or 'limit' implications. Baseline 3 is appropriate when the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the tool's purpose: checking an inbox for an @agentlair.dev email address and returning recent messages with specific fields (sender, subject, received time). It uses specific verbs ('check', 'returns') and identifies the resource (inbox for @agentlair.dev addresses). However, it doesn't explicitly differentiate from sibling tools like 'read_message' or 'list_addresses', which prevents a score of 5.

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

Usage Guidelines2/5

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. It doesn't mention prerequisites (e.g., needing a claimed address), exclusions, or comparisons to siblings like 'read_message' for detailed content or 'list_addresses' for address management. This leaves the agent without context for tool selection.

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

claim_addressBInspect

Claim a new @agentlair.dev email address for your agent. Free tier supports multiple addresses.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesThe address to claim (must end in @agentlair.dev, e.g. mybot@agentlair.dev)
Behavior2/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 mentions the free tier supports multiple addresses, adding some context about availability, but lacks details on permissions, rate limits, whether the claim is reversible, or what happens on failure. For a mutation tool with zero annotation coverage, this 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.

Conciseness5/5

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

The description is two concise sentences with zero waste, front-loaded with the core action and resource. Every sentence adds value: the first states the purpose, and the second provides tier context.

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

Completeness3/5

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

Given one parameter with full schema coverage and no output schema, the description is adequate but incomplete. It covers the basic purpose and tier context but lacks behavioral details for a mutation tool, such as error handling or response format, leaving gaps in completeness.

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 description coverage is 100%, with the parameter 'address' fully documented in the schema. The description doesn't add any parameter-specific details beyond what the schema provides, such as validation rules or examples, so it meets the baseline of 3.

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

Purpose4/5

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

The description clearly states the action ('Claim') and resource ('@agentlair.dev email address'), specifying it's for the user's agent. However, it doesn't explicitly differentiate from sibling tools like 'list_addresses' or 'check_inbox', which handle existing addresses rather than creating new ones.

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 usage by mentioning the 'Free tier supports multiple addresses,' suggesting it can be used when needing a new address. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'list_addresses' for viewing existing ones or prerequisites for claiming.

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

delegate_taskAInspect

Delegate a task to another AgentLair agent. The task is delivered to the agent's inbox and picked up asynchronously. Use this when you need another agent to do something — send an email, run a deployment, do research, etc.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesTarget agent's AgentLair email (e.g. pico@agentlair.dev)
taskYesWhat to do — be specific and self-contained. The receiving agent has no context from your conversation.
contextNoBackground information the agent needs to execute the task
priorityNoTask priority (default: normal)
constraintsNoTiming constraints, requirements, or limits
Behavior3/5

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

Discloses async delivery and lack of context sharing, which are key behavioral traits. No annotations provided, so description carries full burden; could mention completion notification, failure modes, or guarantees.

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 efficient sentences: first states purpose+mechanism, second gives usage guidance. Front-loaded and waste-free.

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?

Covers core behavior and usage context well. Missing output schema details (e.g., task ID returned) but functional for a delegation tool.

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 has 100% coverage with clear parameter descriptions. The tool description adds no extra meaning beyond schema; thus baseline 3 is appropriate.

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 the tool's purpose: delegating tasks to another AgentLair agent. It differentiates from sibling tools (calendar, email, vault) that perform direct operations, establishing a distinct role.

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 'Use this when you need another agent to do something' with examples (send email, deployment, research). Does not enumerate alternatives or cases where not to use, but context is clear enough.

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

list_addressesAInspect

List all @agentlair.dev email addresses associated with your API key.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/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 indicates this is a read operation ('List all') but does not disclose behavioral traits such as rate limits, authentication needs beyond the API key, or what happens if no addresses are associated. It adds basic context but lacks details on response format or potential errors.

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 a single, efficient sentence that front-loads the key action ('List all') and resource. There is zero waste, and every word contributes to clarifying the tool's function without unnecessary elaboration.

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

Completeness3/5

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

Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is minimally complete. It states what the tool does but lacks information on return values (e.g., list format, fields) or error conditions. For a simple list tool, this is adequate but leaves gaps in behavioral context.

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 input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately does not discuss parameters, maintaining focus on the tool's purpose. A baseline of 4 is applied as it effectively handles the lack of parameters without redundancy.

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 the specific action ('List all') and resource ('@agentlair.dev email addresses'), and distinguishes itself from siblings like check_inbox (which reads messages) or claim_address (which acquires addresses). It specifies the scope as 'associated with your API key', making the purpose unambiguous.

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 implies usage when needing to see all available email addresses under the current API key, but does not explicitly state when to use this tool versus alternatives like claim_address (for obtaining new addresses) or check_inbox (for reading messages). It provides clear context but lacks explicit exclusions or named alternatives.

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

preflight_trust_checkAInspect

Check trust readiness before engaging with an agent. Returns a ReadinessCard: trust score, behavioral maturity level, whether it's safe to engage, and any caveats. Call this before delegating tasks, accepting agent output, or authorizing payments involving an unknown agent. Free — no extra charge beyond your API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idYesAgentLair agent ID to check (format: acc_<alphanumeric>). Found via the agent's AgentLair profile or DID document.
Behavior4/5

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

Despite no annotations, the description discloses the return object (ReadinessCard) and states it is free with no extra charge. It does not mention side effects, but as a read-only check tool, this is sufficient.

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 concise with three sentences: purpose, return and usage, and cost. No unnecessary words, well-structured.

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 no output schema, the description adequately describes the return value. It covers what the tool does, when to use, and cost. Complete for a simple check tool.

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%, so the baseline is 3. The description adds value by specifying the agent_id format ('acc_<alphanumeric>') and how to find it, enhancing meaning beyond the 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?

The description clearly states the tool checks trust readiness before engaging with an agent, specifying the return of a ReadinessCard with trust score, maturity level, safety flag, and caveats. It distinguishes from sibling tools like delegate_task by indicating when to use it.

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?

Explicitly advises calling before delegating tasks, accepting output, or authorizing payments with unknown agents. While no explicit alternatives are given, the usage context is clear and covers key scenarios.

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

read_messageBInspect

Read the full content of a specific email message, including the body text.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesThe @agentlair.dev address this message was delivered to
message_idYesThe message_id from check_inbox (angle brackets will be stripped automatically)
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states the tool reads content, implying a read-only operation, but doesn't disclose behavioral traits such as authentication needs, rate limits, error conditions, or what 'full content' includes beyond body text (e.g., headers, attachments). For a tool with no annotations, this leaves significant gaps in transparency.

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 a single, efficient sentence that front-loads the core purpose ('Read the full content of a specific email message') and adds a clarifying detail ('including the body text'). There is no wasted language, and it's appropriately sized for the tool's complexity.

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

Completeness2/5

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

Given no annotations, no output schema, and a read operation with two parameters, the description is incomplete. It doesn't explain return values (e.g., format of the content), error handling, or dependencies like needing message_id from check_inbox. For a tool that retrieves data, more context is needed to guide effective use.

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 description coverage is 100%, so the schema already documents both parameters (message_id and address) with clear descriptions. The description doesn't add any meaning beyond what the schema provides, such as explaining parameter interactions or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the action ('Read') and resource ('full content of a specific email message'), including the scope ('including the body text'). It distinguishes from check_inbox (which lists messages) but doesn't explicitly differentiate from other siblings like send_email. The purpose is specific but lacks explicit sibling differentiation for a perfect score.

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 usage when needing detailed message content, as opposed to check_inbox for listing messages. However, it doesn't explicitly state when to use this tool versus alternatives or mention prerequisites like requiring a valid message_id from check_inbox. Usage is contextually implied but not clearly articulated.

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

send_emailAInspect

Send an email from your AgentLair address (@agentlair.dev) to any recipient. No SMTP or DNS setup needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
ccNoOptional CC recipient addresses
toYesArray of recipient email addresses
fromYesSender address — must be an @agentlair.dev address you own (e.g. mybot@agentlair.dev)
htmlNoOptional HTML body (supplement to text)
textYesPlain text body of the email
subjectYesEmail subject line
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. While it mentions the @agentlair.dev address requirement and convenience aspect, it lacks critical behavioral information such as rate limits, delivery guarantees, authentication requirements, error handling, or what happens if the email fails to send. For a mutation tool with zero annotation coverage, this is a significant gap.

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) with zero wasted words. The first sentence states the core purpose, and the second adds valuable context about the convenience aspect. Every sentence earns its place and the information is front-loaded appropriately.

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

Completeness2/5

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

For a mutation tool with no annotations and no output schema, the description is insufficiently complete. It doesn't address critical aspects like what happens after sending (success/failure indicators), rate limits, authentication requirements, or error conditions. The convenience statement is helpful but doesn't compensate for the missing behavioral context needed for a tool that performs external actions.

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 description doesn't provide any parameter-specific information beyond what's already in the schema (which has 100% coverage). It mentions the @agentlair.dev requirement for the 'from' address, but this is already documented in the schema description for that parameter. With complete schema coverage, the baseline score of 3 is appropriate.

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 the specific action ('send an email'), specifies the resource (email), and distinguishes it from sibling tools by mentioning the unique @agentlair.dev address requirement. It explicitly differentiates from tools like check_inbox or read_message by focusing on sending rather than receiving/reading.

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 provides clear context about when to use this tool ('send an email... to any recipient') and mentions the convenience aspect ('No SMTP or DNS setup needed'), which helps distinguish it from external email solutions. However, it doesn't explicitly state when NOT to use it or provide direct alternatives among the sibling tools.

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

vault_deleteAInspect

Delete a key and all its versions from the AgentLair Vault.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesVault key name to delete
Behavior4/5

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

The description explicitly states that deletion removes the key and 'all its versions,' indicating a destructive, irreversible action. However, it does not mention that deletion is permanent or that there is no recovery, which would add further transparency.

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 a single concise sentence of 12 words, conveying the essential purpose without extraneous information. It is appropriately sized and front-loaded.

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 one parameter and no output schema, the description provides adequate information. It specifies the action and scope (key and all versions). Minor improvement would be noting permanence, but overall it is complete enough.

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% (the only parameter 'key' is described in the schema). The description repeats the schema's parameter description without adding new semantics. Baseline for high coverage is 3.

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 the action ('Delete') and the resource ('a key and all its versions from the AgentLair Vault'). It uses a specific verb and resource, and distinguishes from sibling tools like vault_get and vault_list.

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

Usage Guidelines2/5

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. There is no mention of prerequisites, consequences, or when to avoid deletion. The description lacks context for appropriate usage.

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

vault_getBInspect

Retrieve a stored value from the AgentLair Vault by key name.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesVault key name to retrieve
Behavior2/5

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

No annotations provided, and the description does not disclose behavioral traits like read-only nature, error handling for missing keys, or side effects. For a retrieval tool, this is a significant gap.

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?

Single sentence, no wasted words, front-loaded with the key action. Very concise.

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

Completeness3/5

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

For a simple 1-param tool with no output schema, the description is adequate but incomplete: it does not specify the return value format or behavior for missing keys, leaving gaps for the agent.

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 description coverage is 100% and the description 'by key name' adds minimal meaning beyond the schema's 'Vault key name to retrieve'. Baseline score of 3 is appropriate.

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 the verb 'Retrieve' and the resource 'stored value from the AgentLair Vault', and specifies the action is 'by key name'. This distinguishes it well from sibling vault tools like vault_list, vault_delete, and vault_put.

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

Usage Guidelines2/5

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 such as vault_list or vault_put. The description only states the basic function without providing context on prerequisites or when it is appropriate.

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

vault_listAInspect

List all keys stored in your AgentLair Vault (metadata only, values not returned).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that values are not returned, but it does not mention other behavioral traits such as whether the operation is read-only, permissions needed, or rate limits. For a simple list action, the disclosure is adequate but not rich.

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 a single, well-structured sentence that conveys the essential information without any extraneous words. It is front-loaded and efficient.

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?

Given the tool has no parameters, no output schema, and no annotations, the description provides enough guidance: it states what is listed and what is not returned. It could be more complete by mentioning pagination or return format, but for a simple list tool it is sufficient.

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 input schema has zero parameters, so the description does not need to add param meaning. Schema coverage is 100% (trivially). Baseline score of 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 clearly indicates the tool lists all keys in the Vault, specifies it returns only metadata (not values), and implicitly distinguishes from siblings like vault_get (which retrieves values). The verb 'List' and resource 'keys' are precise.

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 usage for enumerating keys without retrieving values, but it does not explicitly compare with sibling tools like vault_get or vault_delete. There is no direct guidance on when to use this versus alternatives, though the context of sibling names provides some implicit distinction.

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

vault_putAInspect

Store a value in the AgentLair Vault. Use this to persist API keys, secrets, or any data your agent needs across sessions. Best practice: encrypt sensitive data client-side before storing (the server stores whatever you send).

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesVault key name (1-128 chars, alphanumeric + _ - .). Examples: 'openai-key', 'session_token', 'config.json'
valueYesValue to store. For secrets: encrypt first, then store the ciphertext.
metadataNoOptional JSON metadata (labels, timestamps, etc.) — never encrypted
Behavior3/5

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

No annotations provided, so description carries full burden. Notes server stores whatever sent and recommends client-side encryption for secrets. Missing details on overwrite behavior, size limits, or response format.

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, front-loaded with purpose, no redundant information. Every sentence adds meaningful guidance.

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

Completeness3/5

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

Without output schema or annotations, description covers primary use case but omits behavior like overwrite, error handling, or limits. Adequate for a simple storage tool but not fully comprehensive.

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%, but description adds value beyond schema: best practice to encrypt secrets, key format examples, and note that metadata is never encrypted.

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 clearly states 'Store a value in the AgentLair Vault' with specific verb and resource. It distinguishes from sibling tools like vault_get and vault_delete by focusing on persistence.

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?

Explicitly states when to use: for persisting API keys, secrets, and any data across sessions. Provides best practice for encryption. Lacks explicit when-not-to-use alternatives, but sibling list covers other operations.

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.