Skip to main content
Glama
MOT1209

Google Colab MCP Server

by MOT1209

colab_get_memory

Monitor runtime memory usage by retrieving total, available, and used RAM for a specific Colab session. Identify resource constraints to optimize execution.

Instructions

Get RAM total/available/used for a runtime session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
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 the tool returns three memory metrics, which is useful, but it does not mention error behavior, session requirements, or whether this is a safe read-only operation beyond the verb 'Get'.

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, front-loaded sentence with no filler. Every word contributes to understanding the tool's purpose and return metrics.

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 getter with one optional parameter and no output schema, the description gives the core information: what is retrieved and in what scope. However, it leaves session_id semantics and potential error cases unexplained, which limits completeness.

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

Parameters2/5

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

The schema has one parameter, session_id, with 0% description coverage. The description only hints at session_id through the phrase 'for a runtime session' and does not explain what session_id should contain, its format, or whether it is required.

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 uses a specific verb ('Get'), names the resource ('RAM'), lists the exact metrics ('total/available/used'), and scopes it to a 'runtime session'. This clearly differentiates it from sibling tools like colab_get_cpu, colab_get_gpu, and colab_get_disk.

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 scope 'for a runtime session' implies when the tool applies, but no explicit when-to-use guidance or alternatives are mentioned. The intended usage is inferable from the name and description, but not stated directly.

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