Skip to main content
Glama
AkaciaNL

BasicDeploy MCP Server

share_container

Shares a container with another user via email, granting them access. Optionally sets an expiration time for the share.

Instructions

Share a container with another BasicDeploy user by email, giving them access to it. The recipient is emailed a link that signs them in and opens the container. Optionally pass expiresInHours to make the share expire after that many hours (omit for a share that never expires).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesEmail address of the user to share with
containerIdYesUUID of the container
expiresInHoursNoOptional. Hours until the share expires. Omit for an unlimited (never-expiring) share.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.3

TDQS

A4.2/5.0
Behavior4/5

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

The description goes beyond the annotations by explaining the recipient experience (emailed a link that signs them in and opens the container) and the expiration semantics. It does not repeat the annotation values and adds genuinely useful behavioral context.

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

Conciseness5/5

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

Two focused sentences with no wasted words. The main purpose is front-loaded, and the optional parameter behavior is described compactly in the second sentence.

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?

The description covers the tool's purpose, recipient behavior, and optional expiration. Since an output schema is present, return-value documentation is not needed here. It is complete for an agent to invoke the tool 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?

Schema coverage is 100%, so the schema already documents all three parameters. The description adds some context about the expiration behavior, but this closely mirrors the existing schema description. No parameter is left unclear.

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 states a specific verb ('Share'), a resource ('a container'), a recipient type ('another BasicDeploy user'), and a method ('by email'). This clearly distinguishes it from sibling tools like create_container, get_container, and delete_container.

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 for when to use the tool: when a user needs to grant another BasicDeploy user access to a container by email. It does not explicitly name alternatives or exclusions, but the purpose is specific enough that an agent can select it confidently.

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