Skip to main content
Glama
MOT1209

Google Colab MCP Server

by MOT1209

colab_create_directory

Create a directory, including any missing parent folders, within the sandboxed workspace of a Google Colab or Jupyter runtime. Specify a relative path to organize files and prepare storage for code execution or training jobs.

Instructions

Create a directory (and parents) in the runtime's sandboxed workspace. Path is relative to the runtime's sandboxed workspace (e.g. /content/mcp_workspace).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
session_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the full behavioral burden. It does disclose useful behavior: it creates parent directories and treats the path as relative to the sandboxed workspace. But it omits what happens if the directory already exists, whether it is idempotent, and what the response is.

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, front-loads the action and resource, and uses a concrete example to clarify path behavior. Every sentence contributes useful information without wasted words.

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 two parameters, 0% schema coverage, no annotations, and no output schema, the description is not complete enough. The missing semantics for 'session_id' are a notable gap, and there is no guidance about return values or failure behavior. The path handling is well covered, but overall invocation still leaves important unknowns.

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 0% description coverage, so the description must explain the parameters. It does explain 'path' well by noting it is relative and giving an example. However, the 'session_id' parameter is entirely undocumented, leaving agents to guess whether it is required, what it selects, or how it relates to sessions.

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 and resource ('Create a directory') and adds parent-directory creation, making the core operation unambiguous. It also scopes the action to the runtime's sandboxed workspace, which separates it from notebook, file, and session-related siblings.

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 clearly implies use when a directory is needed in the sandboxed workspace, and the relative-path example helps clarify how to invoke it. However, it does not explicitly state when not to use it or mention alternatives, leaving the usage guidance mostly implicit.

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