Skip to main content
Glama

infomaniak_list_databases

Read-onlyIdempotent

List MariaDB databases attached to a web hosting, showing disk usage and running operations for each.

Instructions

List every MariaDB database attached to a web hosting (with disk usage and any running operations).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hosting_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hosting_idYes
countYes
databasesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.1.1
    • addedOutput schema / properties / databases / items / properties / application / anyOf
      Added value: +[
      +  {
      +    "anyOf": [
      +      {
      +        "type": "string"
      +      },
      +      {
      +        "anyOf": [
      +          {
      +            "not": {}
      +          },
      +          {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "id": {
      +                    "type": [
      +                      "string",
      +                      "number"
      +                    ]
      +                  },
      +                  "location": {
      +                    "type": "string"
      +                  },
      +                  "name": {
      +                    "type": "string"
      +                  },
      +                  "type": {
      +                    "type": "string"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          }
      +        ]
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / databases / items / properties / application / type
      Removed value: -[
      -  "string",
      -  "null"
      -]
    • addedOutput schema / properties / databases / items / properties / backups / items
      Added value: +{
      +  "type": "number"
      +}
    • addedOutput schema / properties / databases / items / properties / backups / type
      Added value: +"array"
    • addedOutput schema / properties / databases / items / properties / permissions / items
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "rights": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "admin": {
      +          "type": "boolean"
      +        },
      +        "read": {
      +          "type": "boolean"
      +        },
      +        "write": {
      +          "type": "boolean"
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "user": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "user"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / properties / databases / items / properties / permissions / type
      Added value: +"array"
  2. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds detail about disk usage and running operations, which helps set expectations beyond the schema, but no additional behavioral traits like permissions or pagination are mentioned.

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 zero unnecessary words. It efficiently conveys the action, scope, and extra output details.

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 one-parameter list operation with an output schema, the description fully covers the purpose and scope. The presence of an output schema means return values are already documented, so no additional detail is needed.

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

Parameters4/5

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

The single parameter hosting_id is self-descriptive by name, and the description's phrase 'attached to a web hosting' clarifies its role. With 0% schema coverage, this context compensates well, though it does not explicitly state that hosting_id is the identifier for the web hosting.

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 ('List') and resource ('every MariaDB database attached to a web hosting'), clearly distinguishing it from tools like get_database. It also adds useful context about disk usage and running operations.

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 clearly implies when to use this tool: to enumerate all databases under a given hosting_id. It does not explicitly mention alternatives or exclusions, but the scope is self-evident from the wording.

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

Deploy Server

Other Tools