Skip to main content
Glama

configure_storage

Set the storage provider and path for AI prompts, switching between local, OneDrive, Google Drive, Dropbox, or iCloud, with optional data migration.

Instructions

Configura o storage provider e caminho. Permite trocar entre local, OneDrive, Google Drive, etc.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoCaminho absoluto do arquivo (opcional, usa padrão do provider)
migrateNoSe true, migra dados do storage atual (default: false)
providerYesProvider de storage a usar

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior1/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 says nothing about whether this is a persistent mutation, whether authentication is required for cloud providers, what happens to existing data, or whether migration is destructive. The 'migrate' parameter implies data movement but the description never explains it. For a configuration-mutating tool with zero annotation coverage, this is severely underspecified.

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

Conciseness4/5

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

Two short sentences with no filler, and the core purpose is front-loaded. Efficient, though extremely minimal.

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?

A mutation tool with no annotations, no output schema, and a migration capability that is never explained. The description does not address permissions, persistence, or data-handling implications, leaving significant gaps for an agent deciding whether to invoke it.

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 including the enum values and the migrate default. The description adds no syntax, format, or behavioral detail beyond what the schema provides. Baseline 3 is appropriate.

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

Purpose3/5

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

States a verb and resource ('Configura o storage provider e caminho') but is vague about what configuration actually means and what effects it has. It does not differentiate from camera-ready siblings like get_storage_config or list_storage_providers, though it does gesture at provider switching.

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 get_storage_config (reading config) or list_storage_providers. The mention of switching providers implies a use case but does not state prerequisites or consequences.

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