Skip to main content
Glama
AkaciaNL

BasicDeploy MCP Server

get_container

Read-only

Retrieve complete details of a container, including its ID, subdomain, public URL, status, ports, database credentials, S3 bucket, volume path, and timestamps, to inspect deployment state and troubleshoot issues.

Instructions

Get full details of one container: id, subdomain, public URL, status, ports, database name and username, S3 bucket, volume path, and timestamps.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
containerIdYesUUID of the container

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesContainer UUID.
urlYesPublic HTTPS URL.
statusYesLifecycle status, e.g. running or sleeping.
createdAtNoCreation time (ISO 8601).
subdomainYesContainer subdomain.
memoryBytesNoMemory limit in bytes.
storageBytesNoStorage used in bytes.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.3

TDQS

A4.1/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is established. The description adds the full list of returned fields, which is useful, but it doesn't disclose other behavioral traits like error behavior or whether the container must be running. This is acceptable given the annotations and output schema.

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?

A single, well-structured sentence that front-loads the core purpose ('Get full details of one container') followed by a concise, comma-separated list of the details returned. Every word earns its place; there is no fluff or repetition.

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 simple get-by-ID tool with one required parameter, a clear output schema, and read-only annotations, the description is complete. It tells the agent exactly what information will be returned and leaves no critical gap for invoking 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?

The input schema provides a 100%-covered parameter description ('UUID of the container'), so the description doesn't need to add much. It reinforces that this is about a single container, but doesn't add meaning beyond the schema. 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 a specific verb ('Get'), a specific resource ('one container'), and enumerates the returned details (id, subdomain, URL, status, ports, database info, S3 bucket, volume, timestamps). The singular 'one container' implicitly differentiates it from list_containers, so an agent can select it correctly.

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 gives clear context: use this when you need full details of one container by ID. It doesn't explicitly mention the alternative list_containers or when not to use this tool, but the singular scope and available sibling names imply the intended selection.

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