Skip to main content
Glama

configure_credentials

Configure optional credentials for government satellite providers (CDSE, NASA Earthdata, Planetary Computer, FIRMS) to unlock full-granule archive downloads and higher rate limits.

Instructions

Dynamically configure optional credentials for government satellite providers (CDSE, NASA Earthdata, Planetary Computer, FIRMS). Optional: standard zero-config public access works out-of-the-box without credentials. Providing credentials unlocks official full-granule archive downloads and higher rate limits.

Args: provider: 'cdse' (Copernicus Data Space Ecosystem), 'earthdata' (NASA), 'planetary_computer' (Microsoft), or 'firms'. username: Username or email (required for CDSE). password: Password (required for CDSE). token_or_key: API token or subscription key (for Earthdata, Planetary Computer, or FIRMS).

Returns: JSON string with credential configuration status and verified capabilities.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordNo
providerYes
usernameNo
token_or_keyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral disclosure burden. It discloses the return format (JSON status with verified capabilities) and the benefits of providing credentials, but it does not state whether credentials are persisted, whether they overwrite existing settings, or how verification works. For a state-changing configuration tool, these are meaningful gaps, though the term 'configure' implies mutation.

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 efficiently organized: purpose, optionality, provider-specific argument details, and return value. Every sentence carries needed information, and the critical provider-argument coupling is presented in a scannable list. No filler or redundant restatement of the schema is present.

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?

Given zero annotations and zero schema description coverage, the description provides robust context: provider-specific requirements, the public-access alternative, the unlock benefits, and the return format. It is slightly incomplete around persistence, error handling, and whether existing credentials are replaced, but the core invocation model is fully covered and an output schema exists to describe return structure.

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

Parameters5/5

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

Schema description coverage is 0%, and the description fully compensates: it maps each provider value to its real-world service, specifies that username/password are required for CDSE, and defines token_or_key as an API token or subscription key for the other providers. This information is entirely absent from the input schema and is essential for correct invocation.

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-resource pairing—'Dynamically configure optional credentials'—and enumerates the four supported providers (CDSE, NASA Earthdata, Planetary Computer, FIRMS). It distinguishes itself from the sibling get_credential_status by focusing on configuration rather than reading status, and the optionality framing clarifies exactly what the tool does.

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?

It provides clear context for when configuration matters: 'Providing credentials unlocks official full-granule archive downloads and higher rate limits,' and explicitly notes that public access works without credentials. It implies the alternative is to skip configuration for public access, but it doesn't name other tools or state a direct when-not-to-use condition.

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