Skip to main content
Glama
aliyun

Alibaba Cloud RDS OpenAPI MCP Server

Official
by aliyun

Alibaba Cloud RDS OpenAPI MCP Server

MCP server for RDS Services via OPENAPI

Prerequisites

  1. Install uv from Astral or the GitHub README

  2. Install Python using uv python install 3.12

  3. Alibaba Cloud credentials with access to Alibaba Cloud RDS services

Related MCP server: AlibabaCloud MCP Server

Quick Start

Using cherry-studio (Recommended)

  1. Download and install cherry-studio

  2. Follow the documentation to install uv, which is required for the MCP environment

  3. Configure and use RDS MCP according to the documentation. You can quickly import the RDS MCP configuration using the JSON below. Please set ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET to your Alibaba Cloud AK/SK.

The following error may appear during import, which can be ignored: xxx settings.mcp.addServer.importFrom.connectionFailed

{
  "mcpServers": {
    "rds-openapi": {
      "name": "rds-openapi",
      "type": "stdio",
      "description": "",
      "isActive": true,
      "registryUrl": "",
      "command": "uvx",
      "args": [
        "alibabacloud-rds-openapi-mcp-server@latest"
      ],
      "env": {
        "ALIBABA_CLOUD_ACCESS_KEY_ID": "$you_access_id",
        "ALIBABA_CLOUD_ACCESS_KEY_SECRET": "$you_access_key"
      }
    }
  }
}
  1. Finally, click to turn on MCP

  1. You can use the prompt template provided below to enhance your experience.

Using Cline

Set you env and run mcp server.

# set env
export SERVER_TRANSPORT=sse;
export SERVER_HOST=127.0.0.1; # Default: 127.0.0.1. API_KEY is required when binding to a non-loopback host.
export ALIBABA_CLOUD_ACCESS_KEY_ID=$you_access_id;
export ALIBABA_CLOUD_ACCESS_KEY_SECRET=$you_access_key;
export ALIBABA_CLOUD_SECURITY_TOKEN=$you_sts_security_token; # optional, required when using STS Token 
export API_KEY=$you_mcp_server_api_key; # Required when SERVER_HOST is not a loopback address.
export ENABLE_WRITE_TOOLS=false; # Set true only when intentionally exposing write-capable tools on a non-loopback host.
export ALLOW_HEADER_CREDENTIALS=false; # Default false. Set true only in trusted deployments that require per-request credentials.

# run mcp server
uvx alibabacloud-rds-openapi-mcp-server@latest

After run mcp server, you will see the following output:

INFO:     Started server process [91594]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)

And then configure the Cline.

remote_server = "http://127.0.0.1:8000/sse";

When API_KEY is configured, MCP clients must send Authorization: Bearer <API_KEY>.

If you encounter a 401 Incorrect API key provided error when using Qwen, please refer to the documentation for solutions.

Using Claude

Download from Github

git clone https://github.com/aliyun/alibabacloud-rds-openapi-mcp-server.git

Add the following configuration to the MCP client configuration file:

{
  "mcpServers": {
    "rds-openapi-mcp-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/alibabacloud-rds-openapi-mcp-server/src/alibabacloud_rds_openapi_mcp_server",
        "run",
        "server.py"
      ],
      "env": {
        "ALIBABA_CLOUD_ACCESS_KEY_ID": "access_id",
        "ALIBABA_CLOUD_ACCESS_KEY_SECRET": "access_key",
        "ALIBABA_CLOUD_SECURITY_TOKEN": "sts_security_token",
        // optional, required when using STS Token
      }
    }
  }
}

Components

OpenAPI Tools

  • add_tags_to_db_instance: Add tags to an RDS instance.

  • allocate_instance_public_connection: Allocate a public connection for an RDS instance.

  • attach_whitelist_template_to_instance: Attach a whitelist template to an RDS instance.

  • create_db_instance: Create an RDS instance.

  • create_db_instance_account: Create an account for RDS instance.

  • describe_all_whitelist_template: Query the whitelist template list.

  • describe_available_classes: Query available instance classes and storage ranges.

  • describe_available_zones: Query available zones for RDS instances.

  • describe_bills: Query the consumption summary of all product instances or billing items for a user within a specific billing period.

  • describe_db_instance_accounts: Batch retrieves account information for multiple RDS instances.

  • describe_db_instance_attribute: Queries the details of an instance.

  • describe_db_instance_databases: Batch retrieves database information for multiple RDS instances.

  • describe_db_instance_ip_allowlist: Batch retrieves IP allowlist configurations for multiple RDS instances.

  • describe_db_instance_net_info: Batch retrieves network configuration details for multiple RDS instances.

  • describe_db_instance_parameters: Batch retrieves parameter information for multiple RDS instances.

  • describe_db_instance_performance: Queries the performance data of an instance.

  • describe_db_instances: Queries instances.

  • describe_error_logs: Queries the error log of an instance.

  • describe_instance_linked_whitelist_template: Query the whitelist template list.

  • describe_monitor_metrics: Queries performance and diagnostic metrics for an instance using the DAS (Database Autonomy Service) API.

  • describe_slow_log_records: Query slow log records for an RDS instance.

  • describe_sql_insight_statistic: Query SQL Log statistics, including SQL cost time, execution times, and account.

  • describe_vpcs: Query VPC list.

  • describe_vswitches: Query VSwitch list.

  • modify_security_ips: Modify RDS instance security IP whitelist.

  • get_current_time: Get the current time.

  • modify_db_instance_description: Modify RDS instance descriptions.

  • modify_db_instance_spec: Modify RDS instance specifications.

  • modify_parameter: Modify RDS instance parameters.

  • restart_db_instance: Restart an RDS instance.

SQL Tools

The MCP Server will automatically create a read-only account, execute the SQL statement, and then automatically delete the account. This process requires that the MCP Server can connect to the instance.

  • explain_sql: Execute EXPLAIN for a single SELECT statement and return the execution plan.

  • show_engine_innodb_status: Execute sql show engine innodb status and return sql result.

  • show_create_table: Execute SHOW CREATE TABLE for validated database and table identifiers.

  • show_largest_table: Query the top few tables with the highest space occupancy.

  • show_largest_table_fragment: Query the tables with the largest table fragments.

  • query_sql: Execute a single read-only SQL statement (SELECT, SHOW, DESCRIBE, or EXPLAIN) and return sql result.

Toolsets

Toolsets group available MCP tools so you can enable only what you need. Configure toolsets when starting the server using either:

  • Command line: --toolsets parameter

  • Environment variable: MCP_TOOLSETS

Available Toolsets

Here is a list of toolsets and their functions:

  • rds: Enables all tools for the standard, managed RDS service

  • rds_custom_read: Enables read-only tools for the RDS Custom.

  • rds_custom_all: Enables full read and write tools for the RDS Custom.

Format

Use comma-separated toolset names (no spaces around commas):

rds,rds_custom_all

Examples

# Single toolset
--toolsets rds

# Multiple tools
--toolsets rds,rds_mssql_custom

# Environment variable
export MCP_TOOLSETS=rds,rds_custom_all

Default Behavior

If no toolset is specified, the default rds group is loaded automatically.

Resources

None at this time

Skills

This project supports extending the capabilities of RDS Copilot through Skills. Two skills are available:

  • alibabacloud-rds-copilot: Invokes the RDS AI Assistant API for intelligent Q&A, SQL optimization, and troubleshooting.

  • alibabacloud-rds-instances-manage: Exposes this project's OpenAPI tools and SQL tools as a script/CLI for use with OpenClaw, Claude Code, and similar platforms. The model runs alibabacloud-rds-instances-manage list and alibabacloud-rds-instances-manage run <tool_name> '<JSON args>' to manage RDS instances (query instances, monitoring, slow logs, parameters, run read-only SQL, etc.). After installing the package, the alibabacloud-rds-instances-manage command is available; the skill directory is skill/alibabacloud-rds-instances-manage/.

For detailed information on using Skills, please refer to: Skills Documentation

Prompts

# Role  
You are a professional Alibaba Cloud RDS Copilot, specializing in providing customers with efficient technical support and solutions for RDS (Relational Database Service). Your goal is to help customers resolve issues quickly through clear problem decomposition, precise tool invocation, and accurate time calculations.

## Skills  

### Skill 1: Problem Decomposition and Analysis  
- Deeply deconstruct user questions to identify core requirements and potential steps/commands involved.  
- Provide clear task breakdowns to ensure each step contributes to the final solution.
- Please organize your answers in a table format as much as possible.

### Skill 2: RDS MCP Tool Invocation  
- Proficiently invoke the RDS MCP tool to retrieve database information or execute operations.  
- Tool invocation must follow task decomposition and align with logical reasoning and customer needs.  
- Select appropriate MCP modules (e.g., monitoring data queries, performance diagnostics, backup/recovery) based on user requirements.  

### Skill 3: Time Interpretation and Calculation  
- Accurately parse relative time concepts like "today," "yesterday," or "the last hour."  
- Convert relative time expressions into precise time ranges or timestamps using the current time to support data queries or operations.  

## Constraints  
- **Task Decomposition First**: Always provide detailed task breakdowns.  
- **Tool Dependency Clarity**: All MCP tool invocations must be justified by clear task requirements and logical reasoning.  
- **Time Precision**: Calculate exact time ranges for time-sensitive queries.  
- **Professional Focus**: Discuss only Alibaba Cloud RDS-related technical topics.  
- **Safety Awareness**: Ensure no operations negatively impact customer databases.

Security Deployment Guide

Do not expose the MCP endpoint to the public Internet. The server can invoke Alibaba Cloud RDS OpenAPI tools and may use sensitive cloud credentials, so an Internet-facing MCP endpoint can create serious security risks.

The strongly recommended deployment model is to run the MCP server only on the local loopback address:

export SERVER_HOST=127.0.0.1

If you must use a non-loopback address, restrict it to a trusted private network, enforce network access controls, configure API_KEY, and avoid enabling write-capable tools unless explicitly required.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository

  2. Create your feature branch (git checkout -b feature/amazing-feature)

  3. Commit your changes (git commit -m 'Add some amazing feature')

  4. Push to the branch (git push origin feature/amazing-feature)

  5. Open a Pull Request

License

This project is licensed under the Apache 2.0 License.

Contact Information

For any questions or concerns, please contact us through the DingTalk group:106730017609

Available Tools

36 tools
add_tags_to_db_instanceC
add tags to db instance.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    tags: The tags to be added to the RDS instance.
Returns:
    dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
tagsYes
region_idYes
db_instance_idYes

TDQS

C2.6/5.0
Behavior2/5

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

Without annotations, the description must disclose behavioral traits. It only indicates that tags are added (mutation) but omits details like idempotency, overwrite behavior, tag limits, or authentication requirements.

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

Conciseness3/5

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

The description is very short and includes a structured Args/Returns section, which helps readability. However, it is too concise to be informative, missing necessary details that would justify its brevity.

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 the tool has a nested parameter (tags) and no annotations or output schema, the description fails to provide sufficient context about input format, preconditions, or what the response contains. It is incomplete for effective use.

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 parameter descriptions are minimal, essentially restating the parameter names with slight elaboration (e.g., 'The region ID of the RDS instance.'). No details on the structure of the tags object or value constraints are provided, and the schema has no descriptions.

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

Purpose4/5

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

The description clearly states the tool adds tags to a DB instance, which is a specific verb+resource. It distinguishes from sibling tools that focus on creation, modification, or description. However, it lacks any further context about what adding tags entails.

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 is provided on when to use this tool versus alternatives, such as when the instance exists or if tags should be replaced. There is no mention of prerequisites or exclusion criteria.

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

allocate_instance_public_connectionC
allocate db instance public connection.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    connection_string_prefix: The prefix of connection string.
Returns:
    dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
portNo3306
region_idYes
db_instance_idYes
connection_string_prefixNo

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description must fully disclose behavior. It only states 'allocate' without disclosing side effects, authentication requirements, rate limits, or whether the operation is idempotent. The description is insufficient for safe use.

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

Conciseness3/5

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

The description is concise but uses a Python docstring format with Args and Returns, which is not standard for MCP descriptions. It is adequate but could be more streamlined.

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 no output schema, no annotations, and 4 parameters, the description is incomplete. It fails to explain what 'allocate' entails, the format of the return dict, or any constraints like region availability.

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?

Schema coverage is 0%, meaning no property descriptions. The description mentions three of four parameters (region_id, db_instance_id, connection_string_prefix) but adds no meaning beyond their names. The port parameter is omitted entirely.

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

Purpose4/5

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

The description clearly states 'allocate db instance public connection,' providing a specific verb and resource. However, it does not differentiate from sibling tools like attach_whitelist_template_to_instance or modify_security_ips, which also deal with connectivity.

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 alternatives. It does not mention prerequisites, such as whether the instance must not already have a public connection, or when to avoid using it.

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

attach_whitelist_template_to_instanceD
allocate db instance public connection.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    template_id: Whitelist Template ID. Can be obtained via DescribeAllWhitelistTemplate.
Returns:
    dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
template_idYes
db_instance_idYes

TDQS

D1.8/5.0
Behavior1/5

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

No annotations provided. The description does not disclose behavioral traits (e.g., permissions, side effects, idempotency). The mismatch between description and name creates confusion, not transparency.

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

Conciseness2/5

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

The description is short but the main sentence is inaccurate and misleading. Conciseness is undermined by incorrect content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, no error handling information, no examples. The parameter explanations are minimal. The core action is misrepresented, making the tool contextually incomplete.

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?

Despite 0% schema description coverage, the description provides brief explanations for all three parameters (e.g., 'region_id: The region ID of the RDS instance'), adding meaning beyond the schema's property names and types.

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

Purpose1/5

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

The description states 'allocate db instance public connection' which contradicts the tool name 'attach_whitelist_template_to_instance'. This is misleading and does not clarify the actual purpose.

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 vs siblings like 'allocate_instance_public_connection' or 'describe_all_whitelist_template'. Agent has no context for selection.

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

create_db_instanceB

Create an RDS instance.

Args:
    region_id: Region ID.
    engine: Database type (MySQL, SQLServer, PostgreSQL, MariaDB).
    engine_version: Database version.
    dbinstance_class: Instance specification. Query available class_codes by `describe_available_classes`.
    dbinstance_storage: Storage space in GB.
    security_ip_list: IP whitelist, separated by commas. Default: "127.0.0.1".
    instance_network_type: Network type (Classic, VPC). Default: VPC.
    zone_id: Zone ID. Query available zones by `describe_available_zones`.
    zone_id_slave1: Slave Node1 Zone ID. Query available zones by `describe_available_zones`.
    zone_id_slave2: Slave Node2 Zone ID. Query available zones by `describe_available_zones`.
    pay_type: Payment type (Postpaid, Prepaid). Default: Postpaid.
    instance_charge_type: Instance charge type.
    system_db_charset: Character set.
    dbinstance_net_type: Network connection type (Internet, Intranet). Default: Internet.
    category: Instance category. Default: Basic.
    dbinstance_storage_type: Storage type. (e.g. local_ssd,general_essd,cloud_essd,cloud_essd2,cloud_essd3)
    vpc_id: VPC ID.
    vswitch_id: VSwitch ID.
    private_ip_address: Private IP address.
    client_token: Idempotence token.
    resource_group_id: Resource group ID.
    tde_status: TDE status (Enable, Disable).
    encryption_key: Custom encryption key.
    serverless_config: Serverless instance configuration.
    table_names_case_sensitive: Are table names case-sensitive.
    db_time_zone: the db instance time zone.
    connection_string: the connection string for db instance.
    db_param_group_id: the db param group id for db instance.
Returns:
    Dict[str, Any]: Response containing the created instance details.
ParametersJSON Schema
NameRequiredDescriptionDefault
engineYes
vpc_idYes
zone_idYes
categoryNoBasic
pay_typeNoPostpaid
region_idYes
tde_statusNo
vswitch_idYes
client_tokenNo
db_time_zoneNo
encryption_keyNo
engine_versionYes
zone_id_slave1No
zone_id_slave2No
dbinstance_classYes
security_ip_listNo127.0.0.1
connection_stringNo
db_param_group_idNo
resource_group_idNo
serverless_configNo
system_db_charsetNo
dbinstance_storageYes
private_ip_addressNo
dbinstance_net_typeNoInternet
instance_network_typeNoVPC
dbinstance_storage_typeNo
table_names_case_sensitiveNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It mentions 'Create' implying mutation and includes a client_token for idempotency, but does not discuss permissions, asynchronous behavior, or side effects beyond creation. This is insufficient for a complex provisioning tool.

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

Conciseness3/5

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

The description follows a standard docstring format with Args and Returns sections. It is systematic but verbose due to listing all parameters. The first line directly states the purpose, which is good, but the bulk could be trimmed or organized more efficiently.

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?

All parameters are covered, and there are hints about prerequisites (e.g., VPC, VSwitch are required). However, preconditions like existing network resources are not explicitly stated, and the return value is merely 'Dict[str, Any]' without detail. Given the tool's complexity, more completeness 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 description adds meaning to all 27 parameters beyond the schema's bare type/name/default (since schema description coverage is 0%). It provides brief descriptions, defaults, and references to sibling tools for queries (e.g., 'Query available class_codes by describe_available_classes'). Some descriptions are terse but still valuable.

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 starts with 'Create an RDS instance,' which clearly states the tool's verb and resource. The sibling tools are primarily describe and modify operations, so this creation tool is distinct and well-positioned.

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?

The description does not explicitly state when to use this tool versus alternatives. It indirectly references sibling tools (describe_available_classes, describe_available_zones) in parameter descriptions, but lacks direct guidance on when to create vs. describe or modify.

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

create_db_instance_accountC
Create a new account for an RDS instance.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    account_name: The name of the new account.
    account_password: The password for the new account.
    account_description: The description for the new account.
    account_type: The type of the new account. (e.g. Normal,Super)
Returns:
     dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
account_nameYes
account_typeNoNormal
db_instance_idYes
account_passwordYes
account_descriptionNo

TDQS

C2.6/5.0
Behavior2/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 only states 'Create a new account,' implying a mutation, but does not disclose side effects, required permissions, reversibility, error conditions, or any other behavioral traits.

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

Conciseness3/5

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

The description is somewhat verbose with a repetitive list of parameters that largely mirrors the schema. The first sentence is concise, but the list could be streamlined or omitted if the schema provides adequate documentation.

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 0% schema description coverage and no output schema, the description is incomplete. It does not explain the return value behavior (just says 'The response'), error handling, or prerequisites. Sibling tools like describe_db_instance_accounts exist but are not mentioned for guidance.

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 description lists parameters with phrases like 'The region ID of the RDS instance,' which merely restates the parameter name. With 0% schema description coverage, the description should add format, constraints, or examples, but it adds minimal semantic value beyond the schema's field names.

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

Purpose4/5

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

The description starts with 'Create a new account for an RDS instance,' clearly stating the verb 'create' and the resource 'account for RDS instance.' However, it does not differentiate from sibling tools that also create resources (e.g., create_db_instance), but given the distinct resource type, it is clear enough.

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 is provided on when to use this tool vs. alternatives, such as when to create an account versus modifying security settings or describing accounts. The description lacks context for selection.

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

describe_all_whitelist_templateB
Read-only
describe all whitelist template.
Args:
    region_id: The region ID of the RDS instance.
    template_name: The ID of the RDS instance.
Returns:
    List[Dict[str, Any]]: The response contains all whitelist template information.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
template_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description's return type adds minimal value. No mention of potential pagination, rate limits, or empty results. The read-only behavior is adequately communicated by annotations.

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?

The description is short and front-loaded with purpose. It efficiently lists parameters and return type. Minor grammar issues ('whitelist template' vs 'whitelist templates') do not significantly detract.

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?

Given the tool's simplicity (2 params, read-only) and an output schema existing, the description covers basic functionality. However, it lacks guidance on usage and has a parameter description error, which reduces completeness for an agent.

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 description provides one-line explanations for both parameters, adding some meaning beyond schema titles. However, the description for template_name ('The ID of the RDS instance') is likely incorrect (it should be template name), potentially misleading. With 0% schema coverage, the description carries burden but does so inaccurately.

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

Purpose4/5

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

The description states 'describe all whitelist template' with parameters for region and optional template name, making the purpose clear. It differentiates from sibling tools like describe_instance_linked_whitelist_template by focusing on templates themselves. However, wording is slightly awkward and could specify that omitting template_name returns all templates.

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 explicit guidance on when to use this tool versus alternatives (e.g., describe_instance_linked_whitelist_template). The description does not indicate typical use cases or that template_name is optional, leaving the agent to infer from names.

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

describe_available_classesA
Read-only

Query the RDS instance class_code and storage space that can be purchased in the inventory.

Args:
    region_id: The region ID of the RDS instance.
    zone_id: The zone ID of the RDS instance. Query available zones by `describe_available_zones`.
    instance_charge_type: Instance payment type. Values: Prepaid, Postpaid, Serverless.
    engine: Database engine type. Values: MySQL, SQLServer, PostgreSQL, MariaDB.
    engine_version: Database version.
    dbinstance_storage_type: Storage type. Values: local_ssd,general_essd,cloud_essd,cloud_essd2,cloud_essd3
    category: Instance category. Values: Basic, HighAvailability, cluster, AlwaysOn, Finance, serverless_basic, serverless_standard, serverless_ha.
    dbinstance_id: The ID of the RDS instance.
    order_type: Order type. Currently only supports "BUY".
    commodity_code: Commodity code for read-only instances.

Returns:
    Dict[str, Any]: The response containing available instance classes and storage ranges.
ParametersJSON Schema
NameRequiredDescriptionDefault
engineYes
zone_idYes
categoryYes
region_idYes
order_typeNo
dbinstance_idNo
commodity_codeNo
engine_versionYes
instance_charge_typeYes
dbinstance_storage_typeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description's 'Query' aligns with that. The description adds context by specifying the return type and parameter roles, but does not elaborate on potential side effects or rate limits, which is acceptable for a read-only tool.

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?

The description is well-structured with Args and Returns sections and is front-loaded with the purpose. While concise overall, it could be slightly shortened without losing clarity, but every sentence is informative.

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 the tool's complexity (10 parameters, 7 required) and lack of output schema, the description covers all parameters and mentions the return type (Dict[str, Any]) and content (instance classes and storage ranges). It is sufficiently complete for a query tool.

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?

With 0% schema description coverage, the description fully compensates by listing each parameter, its purpose, and acceptable values (e.g., engine: MySQL, SQLServer, etc.). This adds critical meaning beyond the raw schema types.

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 clearly states the tool 'Query the RDS instance class_code and storage space that can be purchased in the inventory', providing a specific verb and resource. It distinguishes itself from siblings like describe_available_zones by focusing on class_code and storage, not zones.

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 implicitly indicates usage when needing available instance classes and storage, and mentions a related tool (describe_available_zones) for zone queries. However, it lacks explicit when-not-to-use or alternative tools for other scenarios.

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

describe_available_zonesA
Read-only

Query available zones for RDS instances.

Args:
    region_id: Region ID.
    engine: Database type (MySQL, SQLServer, PostgreSQL, MariaDB).
    engine_version: Database version.
        MySQL: 5.5, 5.6, 5.7, 8.0
        SQL Server: 2008r2, 2012, 2014, 2016, 2017, 2019
        PostgreSQL: 10.0, 11.0, 12.0, 13.0, 14.0, 15.0
        MariaDB: 10.3
    commodity_code: Commodity code.
        bards: Pay-as-you-go primary instance (China site)
        rds: Subscription primary instance (China site)
        rords: Pay-as-you-go read-only instance (China site)
        rds_rordspre_public_cn: Subscription read-only instance (China site)
        bards_intl: Pay-as-you-go primary instance (International site)
        rds_intl: Subscription primary instance (International site)
        rords_intl: Pay-as-you-go read-only instance (International site)
        rds_rordspre_public_intl: Subscription read-only instance (International site)
        rds_serverless_public_cn: Serverless instance (China site)
        rds_serverless_public_intl: Serverless instance (International site)
    zone_id: Zone ID.
    dispense_mode: Whether to return zones that support single-zone deployment.
        1: Return (default)
        0: Do not return
    dbinstance_name: Primary instance ID. Required when querying read-only instance resources.
    category: Instance category.
        Basic: Basic Edition
        HighAvailability: High-availability Edition
        cluster: MySQL Cluster Edition
        AlwaysOn: SQL Server Cluster Edition
        Finance: Enterprise Edition
        serverless_basic: Serverless Basic Edition
        serverless_standard: MySQL Serverless High-availability Edition
        serverless_ha: SQL Server Serverless High-availability Edition

Returns:
    Dict[str, Any]: Response containing available zones information.
ParametersJSON Schema
NameRequiredDescriptionDefault
engineYes
zone_idNo
categoryNo
region_idYes
dispense_modeNo
commodity_codeNo
engine_versionNo
dbinstance_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

The readOnlyHint annotation already indicates no side effects. The description adds some behavioral context through parameter options (e.g., dispense_mode, category) but does not disclose potential rate limits, authentication needs, or return format details beyond 'Dict[str, Any].'

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?

The description is well-structured with an Args list and Returns section, making it easy to scan. However, it is somewhat verbose, particularly the full lists of engine versions and commodity codes, which could be abbreviated.

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 the tool has 8 parameters with no schema descriptions and an output schema exists (though not shown), the description provides essential parameter semantics and a return type hint. It lacks details on error handling, pagination, or limits, but for a read-only zone query, it is reasonably complete.

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?

With 0% schema description coverage, the description compensates fully by enumerating allowed values for engine_version, commodity_code, dispense_mode, category, and explaining the purpose of each parameter, including defaults and dependencies (e.g., dbinstance_name required for read-only instances).

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

Purpose4/5

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

The description clearly states 'Query available zones for RDS instances,' specifying the verb and resource. However, it does not explicitly differentiate from sibling tools like 'describe_available_classes,' which serves a similar query purpose for instance classes.

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 implies usage for checking available zones when configuring RDS instances through the parameter list, but it lacks explicit guidance on when to use this tool versus alternatives, nor does it state prerequisites or exclusions.

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

describe_billsB
Read-only
Query the consumption summary of all product instances or billing items for a user within a specific billing period.
Args:
    billing_cycles: bill cycle YYYY-MM, e.g. 2020-03
    db_instance_id: DB instance id (e.g., "rm-xxx")
    is_billing_item: Whether to pull data according to the billing item dimension.
Returns:
    str: billing information.
ParametersJSON Schema
NameRequiredDescriptionDefault
billing_cyclesYes
db_instance_idNo
is_billing_itemNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description is consistent and adds no contradictory info. It describes the query operation but does not disclose additional behavioral traits like data freshness, rate limits, or permission requirements. With annotations covering safety, the description's lack of extra detail is acceptable.

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?

The description is concise, with a clear purpose statement followed by parameter explanations. It could be more structured (e.g., bullet points or separate sections), but it is efficient and front-loaded.

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?

The description covers the function and parameters adequately. Since an output schema exists, the vague return description ('str: billing information') is acceptable. However, it lacks context about the scope (e.g., what user, how billing periods are determined) and does not mention any prerequisites or error conditions.

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?

Schema description coverage is 0%, so the description must compensate. It provides examples and explanations for billing_cycles ('YYYY-MM'), db_instance_id (example 'rm-xxx'), and is_billing_item (boolean indicating dimension). This adds significant meaning beyond the schema, which only has titles.

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

Purpose4/5

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

The description clearly states it queries consumption summary for a user within a billing period. It specifies the resource (product instances/billing items) and the action (query). It distinguishes from sibling describe_* tools by focusing on billing, though it could be more precise about what 'consumption summary' includes.

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 is provided on when to use this tool versus alternatives. Sibling tools like describe_db_instances or describe_monitor_metrics are not mentioned, and there are no conditions for when not to use this tool. The agent must infer usage from the name alone.

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

describe_db_instance_accountsA
Read-only
Batch retrieves account information for multiple RDS instances.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_ids: List of DB instance identifiers (e.g., ["rm-uf6wjk5****", "db-instance-01"])
Returns:
    list[dict]: A list of dictionaries containing account information for each instance.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true, so the description adds only the batch nature and arg explanations. No additional behavioral traits (e.g., pagination, limits) are disclosed, but the read-only status is covered.

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 very concise—one line for purpose followed by structured Args and Returns. No extraneous text, front-loaded, each element earns its place.

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 the simple tool (2 params, no nested objects) and existing annotations, the description covers purpose, args with examples, and return type. It omits potential limits on batch size but is largely complete for typical use.

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?

Despite 0% schema coverage, the description explains both parameters with specific examples: 'region_id' as region ID and 'db_instance_ids' with example values. This adds significant meaning beyond the schema's type-only definitions.

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 clearly states it 'Batch retrieves account information for multiple RDS instances,' specifying the verb (retrieve), resource (account information), and scope (multiple instances). This distinguishes it from siblings like describe_db_instance_databases or describe_db_instance_parameters.

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 implies use when needing account info for multiple instances but offers no explicit guidance on when to use this tool versus alternatives like describe_db_instance or other tools. No when-not-to-use or exclusion criteria.

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

describe_db_instance_attributeA
Read-only
Queries the details of an instance.
Args:
    region_id: db instance region(e.g. cn-hangzhou)
    db_instance_id: db instance id(e.g. rm-xxx)
:return:
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idYes

TDQS

A3.6/5.0
Behavior3/5

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

The annotation readOnlyHint=true already indicates a safe read operation. The description adds 'queries' which aligns, but no additional behavioral traits (e.g., rate limits, auth needs) are disclosed. The annotation carries the burden, so a 3 is appropriate.

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?

The description is short and to the point, using two sentences plus structured args. It is front-loaded with the main purpose. No unnecessary verbiage, though the formatting could be more standardized.

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?

Given no output schema, the description lacks explanation of return values. It also does not differentiate from closely related tools like describe_db_instance_performance. The tool is simple, so a 3 is adequate but leaves gaps.

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?

Schema coverage is 0% with no parameter descriptions in the JSON schema. The description provides example values (e.g., 'cn-hangzhou', 'rm-xxx'), adding meaning beyond the bare schema. This compensates for the missing schema descriptions.

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 clearly states 'Queries the details of an instance,' which conveys a specific verb and resource. It distinguishes from siblings like describe_db_instances (likely lists) and describe_db_instance_performance (performance metrics).

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 vs alternatives. It does not mention that it is a detailed query for a single instance, nor does it exclude scenarios where other tools like describe_db_instances or describe_db_instance_performance might be more appropriate.

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

describe_db_instance_databasesA
Read-only
Batch retrieves database information for multiple RDS instances.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_ids: List of DB instance identifiers (e.g., ["rm-uf6wjk5****", "db-instance-01"])
Returns:
    list[dict]: A list of dictionaries containing database information for each instance.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

The description adds context beyond annotations by noting it operates in batch and returns a list of dicts. However, with readOnlyHint already present, it adds limited behavioral detail such as performance implications or response structure.

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 extremely concise: a single sentence for purpose, then straightforward parameter definitions. Every piece of text is valuable and front-loaded.

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 the tool's simplicity (2 required parameters, output schema exists), the description provides enough context. It explains the batch nature, parameters, and return format, though it could briefly note that details are in the output schema.

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?

With 0% schema coverage, the description significantly adds meaning by specifying region_id as the region ID and providing an example for db_instance_ids. This compensates for the lack of schema descriptions.

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 clearly states the tool performs a batch retrieval of database information for multiple RDS instances, using specific verbs and resource. It distinguishes itself from sibling tools like describe_db_instances by focusing on databases within instances.

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?

The description provides no guidance on when to use this tool versus alternatives (e.g., describe_db_instances for instance metadata). It only states what it does, leaving the agent to infer usage context.

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

describe_db_instance_ip_allowlistA
Read-only
Batch retrieves IP allowlist configurations for multiple RDS instances.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_ids: List of DB instance identifiers (e.g., ["rm-uf6wjk5****", "db-instance-01"])
Returns:
    list[dict]: A list of dictionaries containing network configuration details for each instance.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior4/5

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

The description adds 'batch' capability beyond the readOnlyHint annotation, which is valuable for an AI agent. However, it lacks details on potential limits, error behavior, or pagination. The annotation reduces the burden, making this score appropriate.

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?

The description is concise and well-structured with Args and Returns, but it could include more context without being verbose. No unnecessary content.

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?

The description covers the basic purpose and parameters, and an output schema exists. However, it omits details about the return structure content or potential pagination, leaving gaps for an agent to fully understand the tool's behavior.

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?

With 0% schema coverage, the description provides minimal parameter meaning: region_id as region ID and db_instance_ids with an example. This adds some value but lacks constraints or accepted formats. Baseline 3 is warranted.

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 clearly states the tool performs a batch retrieval of IP allowlist configurations for multiple RDS instances, using specific verbs and resources. It distinguishes itself from sibling tools like describe_db_instance_net_info or modify_security_ips.

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 implies the tool is for reading IP allowlists but does not explicitly state when to use it versus alternatives like describe_db_instance_net_info or modify_security_ips. No exclusion criteria or prerequisites are provided.

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

describe_db_instance_net_infoA
Read-only
Batch retrieves network configuration details for multiple RDS instances.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_ids: List of DB instance identifiers (e.g., ["rm-uf6wjk5****", "db-instance-01"])
Returns:
    list[dict]: A list of dictionaries containing network configuration details for each instance.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

The description is consistent with the readOnlyHint annotation (read-only retrieval). It adds the batch behavior but no further behavioral details beyond what annotations already convey. It does not contradict annotations.

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 extremely concise, with a single-purpose sentence followed by structured Args and Returns sections. Every word adds value, and the most important action is front-loaded.

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 the tool's simplicity and the presence of an output schema, the description provides sufficient information about inputs and outputs. It lacks edge cases or prerequisites but is functionally complete for typical use.

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?

With 0% schema coverage, the description compensates by explaining the purpose of each parameter and providing an example for db_instance_ids. This adds meaningful context beyond the schema types.

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 clearly states the verb 'retrieves' and the resource 'network configuration details for multiple RDS instances', which is specific and distinguishes it from sibling tools that describe other aspects like attributes or databases.

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?

The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or exclusions. It only states the tool's function.

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

describe_db_instance_parametersA
Read-only
Batch retrieves parameter information for multiple RDS instances.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_ids: List of DB instance identifiers (e.g., ["rm-uf6wjk5****", "db-instance-01"])
    paramters: List of parameter names (e.g., ["max_connections", "innodb_buffer_pool_size"])
Returns:
    list[dict]: A list of dictionaries containing parameter information(ParamGroupInfo,ConfigParameters,RunningParameters) foreach instance.
ParametersJSON Schema
NameRequiredDescriptionDefault
paramtersNo
region_idYes
db_instance_idsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, aligning with the description's 'retrieves' verb. The description adds context that it operates in batch mode and returns a list of dictionaries, but does not disclose other behavioral traits like rate limits or pagination.

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?

The description is a concise docstring with Args and Returns sections, providing necessary information without extra fluff. The structure is clear, though the typo slightly detracts.

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 the tool's complexity (3 parameters, batch operation, output schema exists but not provided), the description covers the return structure and main parameters. It lacks details on error handling or edge cases, but is sufficient for basic usage.

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?

Schema description coverage is 0%, so the description compensates by explaining each parameter: region_id, db_instance_ids (list of identifiers), and paramters (list of parameter names with examples). The return type and structure are also described. A minor typo ('paramters' instead of 'parameters') slightly reduces clarity.

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 clearly states 'Batch retrieves parameter information for multiple RDS instances,' specifying the verb 'retrieves,' the resource 'parameter information,' and the context of batch operation. This distinguishes it from other describe tools that focus on single instances or different attributes.

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?

The description does not provide guidance on when to use this tool versus alternatives, such as when to use describe_db_instances or other describe tools. No exclusions or context for appropriate usage are given.

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

describe_db_instance_performanceB
Read-only
Queries the performance data of an instance using the RDS OpenAPI.
This method provides performance data collected from the RDS service, such as MemCpuUsage, QPSTPS, Sessions, ThreadStatus, MBPS, etc.

Args:
    region_id: db instance region(e.g. cn-hangzhou)
    db_instance_id: db instance id(e.g. rm-xxx)
    db_type: the db instance database type(e.g. mysql,pgsql,sqlserver)
    perf_keys: Performance Key  (e.g. ["MemCpuUsage", "QPSTPS", "Sessions", "COMDML", "RowDML", "ThreadStatus", "MBPS", "DetailedSpaceUsage"])
    start_time: start time(e.g. 2023-01-01 00:00)
    end_time: end time(e.g. 2023-01-01 00:00)
ParametersJSON Schema
NameRequiredDescriptionDefault
db_typeYes
end_timeYes
perf_keysYes
region_idYes
start_timeYes
db_instance_idYes

TDQS

B3.4/5.0
Behavior3/5

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

Annotations (readOnlyHint=true) cover the read-only nature. The description adds value by listing example performance metrics (MemCpuUsage, QPSTPS, etc.) that the tool returns. However, it does not disclose other behavioral traits like rate limits or pagination.

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 concise: one sentence for purpose followed by a clear bullet list of parameters with examples. No unnecessary words, well-structured for quick parsing.

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?

Given the tool has 6 required parameters and no output schema, the description covers purpose and parameters but lacks information about the return format (e.g., whether it returns a list or object). The mention of metrics is helpful but incomplete without output structure.

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?

Schema coverage is 0%, so the description must compensate. It provides example values for each parameter (e.g., region_id: cn-hangzhou, perf_keys: array of strings), adding meaning beyond the schema titles. However, format details like date-time format for start_time/end_time are not explicitly specified.

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

Purpose4/5

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

The description clearly states the tool queries performance data from RDS, with a specific verb ('Queries') and resource ('instance'). It distinguishes from siblings like describe_db_instance_attribute by focusing on performance metrics, but does not explicitly contrast.

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 alternatives like describe_db_instance_attribute or describe_slow_log_records. The description implies use for performance monitoring but lacks explicit context or exclusions.

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

describe_db_instancesC
Read-only
Queries instances.
Args:
    region_id: queries instances in region id(e.g. cn-hangzhou)
:return:
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes

TDQS

C2.8/5.0
Behavior3/5

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

The annotation readOnlyHint=true is consistent with the description 'Queries.' However, no additional behavioral details such as result format, pagination, or side effects are disclosed.

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

Conciseness3/5

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

The description is very short but lacks key information. It is concise but at the expense of completeness.

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 the simplicity and single parameter, the description is incomplete. It does not explain what 'instances' are, what the response contains, or any usage constraints (e.g., required permissions).

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?

Schema description coverage is 0%, placing the burden on the description. The description merely repeats 'region_id' without adding meaning beyond the schema's title 'Region Id'. No example or format is given.

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

Purpose4/5

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

The description states 'Queries instances.' which is clear about the verb and resource, but does not distinguish from sibling tools like describe_db_instance_attribute. The region_id parameter is mentioned.

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 is provided on when to use this tool versus alternatives. There is no mention of prerequisites or exclusions.

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

describe_error_logsA
Read-only
Query error logs of an RDS instance.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    start_time: The start time of the query. Format: yyyy-MM-dd HH:mm.
    end_time: The end time of the query. Format: yyyy-MM-dd HH:mm.
    page_size: The number of records per page. Range: 30~100. Default: 30.
    page_number: The page number. Default: 1.
Returns:
    Dict[str, Any]: A dictionary containing error log information
ParametersJSON Schema
NameRequiredDescriptionDefault
end_timeYes
page_sizeNo
region_idYes
start_timeYes
page_numberNo
db_instance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, so the tool is known to be safe. The description adds parameter format details but doesn't disclose additional behavioral traits beyond the schema.

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?

The description is structured with 'Args:' and 'Returns:' sections, clearly listing parameters. It is efficient without fluff, though not extremely front-loaded.

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 the presence of an output schema, the return type note is sufficient. The description covers required parameters, pagination, and time format, making it complete for the tool's complexity.

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?

With 0% schema description coverage, the description carries full burden. It explains all 6 parameters, including format for start_time and end_time, and range for page_size, which adds value beyond the schema.

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 clearly states 'Query error logs of an RDS instance,' specifying the verb and resource. It distinguishes itself from sibling tools like describe_slow_log_records and describe_db_instance_performance.

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 vs alternatives like describe_slow_log_records. The description lacks context on typical use cases or exclusions.

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

describe_instance_linked_whitelist_templateD
Read-only
describe instance linked whitelist template.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
Returns:
    dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
db_instance_idYes

TDQS

D1.6/5.0
Behavior2/5

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

The description adds no behavioral details beyond what the 'readOnlyHint' annotation already conveys. It does not mention any side effects, authentication requirements, performance implications, or limitations such as the scope of the template.

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

Conciseness2/5

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

The description is minimal but lacks substance. Conciseness is achieved at the expense of utility, with no meaningful information beyond a placeholder structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no parameter descriptions, the tool is completely underspecified. The agent cannot determine what the tool does or what a successful response looks like.

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

Parameters1/5

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

Schema description coverage is 0%, and the description only lists the parameter names ('region_id', 'db_instance_id') without explaining their purpose, valid values, or format. The agent cannot infer what these parameters mean.

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

Purpose2/5

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

The description merely restates the tool name as 'describe instance linked whitelist template' without clarifying what a whitelist template is or what specific information is returned. This is a tautology, as it uses the same words as the name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus sibling tools like 'describe_all_whitelist_template' or 'attach_whitelist_template_to_instance'. There is no context for appropriate usage.

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

describe_monitor_metricsA
Read-only
Queries performance and diagnostic metrics for an instance using the DAS (Database Autonomy Service) API.
This method provides extra monitoring and diagnostic data which cannot be queried by describe_db_instance_performance, such as IOPSUsage, MdlLockSession, etc.

Args:
    dbinstance_id (str): The ID of the RDS instance.
    metrics_list (list[str]): The metrics to query. (e.g. ["IOBytesPS", "IOPSUsage", "MdlLockSession", "DiskUsage"])
    db_type (str): The type of the database. (e.g. "mysql")
    start_time(str): the start time. e.g. 2025-06-06 20:00:00
    end_time(str): the end time. e.g. 2025-06-06 20:10:00
Returns:
    the monitor metrics information.
ParametersJSON Schema
NameRequiredDescriptionDefault
db_typeYes
end_timeYes
start_timeYes
metrics_listYes
dbinstance_idYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, and the description adds that it uses the DAS API and provides extra diagnostic data. No contradictions, but no additional behavioral traits like rate limits or data freshness 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 well-structured with a clear first sentence followed by a parameter list with examples. Every sentence adds value without redundancy.

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?

Despite having 5 required parameters and no output schema, the description only returns a vague statement 'the monitor metrics information' without specifying structure, format, or possible values. This is insufficient for an agent to understand what the tool returns.

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?

All 5 parameters are described with examples (e.g., date format for start_time, typical metrics for metrics_list, database type for db_type). Since schema description coverage is 0%, the description fully compensates by providing meaningful usage guidance.

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 clearly states it queries performance metrics using the DAS API and explicitly contrasts with sibling tool 'describe_db_instance_performance', listing specific metrics like IOPSUsage and MdlLockSession that this tool can retrieve.

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 explicitly mentions that this tool provides data not available from describe_db_instance_performance, giving clear context for when to use it. However, it does not provide explicit when-not-to-use or other alternative guidance.

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

describe_slow_log_recordsA
Read-only

Query slow log records for an RDS instance.

Args:
    region_id: The region ID of the RDS instance.
    dbinstance_id: The ID of the RDS instance.
    start_time: Start time in format: yyyy-MM-dd HH:mm.
        Cannot be earlier than 30 days before the current time.
    end_time: End time in format: yyyy-MM-dd HH:mm.
        Must be later than the start time.
    sqlhash: The unique identifier of the SQL statement in slow log statistics.
        Used to get slow log details for a specific SQL statement.
    db_name: The name of the database.
    page_size: Number of records per page. Range: 30-100. Default: 30.
    page_number: Page number. Must be greater than 0 and not exceed Integer max value. Default: 1.
    node_id: Node ID. Only applicable to cluster instances.
        If not specified, logs from the primary node are returned by default.

Returns:
    Dict[str, Any]: The response containing slow log records.
ParametersJSON Schema
NameRequiredDescriptionDefault
db_nameNo
node_idNo
sqlhashNo
end_timeYes
page_sizeNo
region_idYes
start_timeYes
page_numberNo
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations indicate readOnlyHint: true, so no destructive behavior. The description adds valuable behavioral context: time constraints (start_time cannot be earlier than 30 days ago), node_id applicability only to cluster instances, and pagination details. It does not mention what happens with no results or rate limits, but these are less critical given the output schema.

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 well-structured with Args and Returns sections. Each sentence adds value; no redundancy. The purpose is front-loaded, and parameter details are organized in a readable list. It is appropriately sized for the tool's complexity.

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 9 parameters (4 required), an output schema exists, so the description need not detail return fields. It covers all parameters, includes constraints, and provides context for cluster instances. A minor gap is the lack of explanation on interpreting the returned records, but overall it is thorough.

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%, so the description fully compensates by detailing each parameter. It explains time format, value ranges, defaults, and usage context for optional parameters like sqlhash and node_id. This is essential for correct usage and significantly surpasses what the schema alone provides.

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 clearly states the tool's purpose: 'Query slow log records for an RDS instance.' It identifies the specific resource (RDS instance) and the action (query slow logs), distinguishing it from sibling tools like describe_error_logs or describe_db_instances.

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 provides parameter constraints but lacks explicit guidance on when to use this tool versus alternatives. No mention of when to prefer describe_slow_log_records over other describe_* tools. The description is self-contained but does not aid in tool selection among siblings.

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

describe_sql_insight_statisticB
Read-only
Query SQL Log statistics, including SQL cost time, execution times, and account.
Args:
    dbinstance_id (str): The ID of the RDS instance.
    start_time(str): the start time of sql insight statistic. e.g. 2025-06-06 20:00:00
    end_time(str): the end time of sql insight statistic. e.g. 2025-06-06 20:10:00
Returns:
    the sql insight statistic information in csv format.
ParametersJSON Schema
NameRequiredDescriptionDefault
end_timeYes
start_timeYes
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior3/5

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

Annotations provide 'readOnlyHint=true', which is consistent with the description's 'Query' nature. The description adds the return format (CSV) but lacks details on error handling, rate limits, or behavioral traits like data freshness or date range restrictions.

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?

The description is concise, front-loading the purpose and providing parameter details in a docstring-like format. No redundant sentences; however, the 'Args:' style is slightly informal for a JSON-based environment.

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 the tool's simplicity (3 required string parameters, read-only, CSV output), the description provides sufficient context. The output schema exists to detail return fields, so the description need not elaborate. It covers purpose and parameters adequately.

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?

With 0% schema description coverage, the description compensates well by explaining 'dbinstance_id' as the RDS instance ID and providing format examples for 'start_time' and 'end_time' (e.g., '2025-06-06 20:00:00'). This adds meaning beyond the schema's titles.

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

Purpose4/5

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

The description clearly states it queries SQL log statistics including cost time, execution times, and account, using the verb 'Query'. While it distinguishes itself from siblings like 'describe_db_instance_performance' and 'describe_slow_log_records' by focusing on 'SQL insight statistic', it could be more explicit about how it differs.

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 alternatives like 'describe_slow_log_records' or 'query_sql'. The description does not mention prerequisites, constraints, or when not to use it, lacking explicit usage context.

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

describe_vpcsA
Read-only

Query VPC list.

Args:
    region_id: The region ID of the VPC.
    vpc_id: The ID of the VPC. Up to 20 VPC IDs can be specified, separated by commas.
    vpc_name: The name of the VPC.
    resource_group_id: The resource group ID of the VPC to query.
    page_number: The page number of the list. Default: 1.
    page_size: The number of entries per page. Maximum value: 50. Default: 10.
    vpc_owner_id: The Alibaba Cloud account ID of the VPC owner.
    tags: The tags of the resource.

Returns:
    Dict[str, Any]: The response containing the list of VPCs.
ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo
vpc_idNo
vpc_nameNo
page_sizeNo
region_idYes
page_numberNo
vpc_owner_idNo
resource_group_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations indicate readOnlyHint=true, which aligns with 'Query.' The description adds default values for page_number and page_size, and notes that vpc_id can accept up to 20 IDs separated by commas, which is behavioral context beyond the schema.

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?

The description is front-loaded with the purpose and then lists parameters in a structured docstring format. It is slightly verbose but clear and well-organized, earning its place.

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?

Given the output schema exists, the return value description ('Dict[str, Any]') is sufficient. All parameters are covered, pagination is explained, and the tool is a simple read-only list query. No gaps detected.

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 coverage is 0%, so the description carries the full burden. It provides meaningful descriptions for all 8 parameters, including defaults and constraints (e.g., 'Up to 20 VPC IDs,' 'Maximum value: 50' for page_size), significantly aiding parameter understanding.

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 starts with 'Query VPC list,' clearly indicating the verb and resource. The parameter list details specific filters (region_id, vpc_id, etc.), distinguishing it from sibling tools like describe_vswitches, which are about subnets, not VPCs.

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 is provided on when to use this tool vs alternatives. There is no mention of alternative tools like describe_vswitches or when to use this instead of other listing tools. The description only explains parameters.

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

describe_vswitchesA
Read-only

Query VSwitch list.

Args:
    region_id: The region ID of the VSwitch. At least one of region_id or vpc_id must be specified.
    vpc_id: The ID of the VPC to which the VSwitch belongs. At least one of region_id or vpc_id must be specified.
    vswitch_id: The ID of the VSwitch to query.
    zone_id: The zone ID of the VSwitch.
    vswitch_name: The name of the VSwitch.
    resource_group_id: The resource group ID of the VSwitch.
    page_number: The page number of the list. Default: 1.
    page_size: The number of entries per page. Maximum value: 50. Default: 10.

Returns:
    Dict[str, Any]: The response containing the list of VSwitches.
ParametersJSON Schema
NameRequiredDescriptionDefault
vpc_idNo
zone_idNo
page_sizeNo
region_idNo
is_defaultNo
vswitch_idNo
page_numberNo
vswitch_nameNo
resource_group_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. The description adds value by detailing pagination parameters (page_number, page_size) and required parameter constraints, disclosing behavior beyond the annotations.

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?

The description is well-structured with Args and Returns sections, and the key action is front-loaded. It is slightly verbose due to the parameter list, but remains clear and effective.

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?

The description covers all necessary aspects: purpose, parameters with constraints, pagination, and return type. With an output schema present, the return description is sufficient. Complete for a read-only list tool.

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?

The description explains the purpose of 8 out of 9 parameters (all except is_default), including constraints like 'At least one of region_id or vpc_id must be specified.' This adds significant meaning beyond the schema's titles and defaults.

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 starts with 'Query VSwitch list,' providing a specific verb and resource. Listing parameters unique to VSwitches distinguishes it from sibling tools like describe_db_instances or describe_vpcs.

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 states that at least one of region_id or vpc_id must be specified, which is a usage hint. However, it does not compare to other tools or explain when to prefer this tool over alternatives.

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

explain_sqlB
Read-only
show sql execute plan
Args:
    dbinstance_id (str): The ID of the RDS instance.
    region_id(str): the region id of instance.
    db_name(str): the db name for table.
    sql(str): the target sql.
Returns:
    the sql execute plan.
ParametersJSON Schema
NameRequiredDescriptionDefault
sqlYes
db_nameYes
region_idYes
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

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

The annotation readOnlyHint=true already indicates no mutation, but the description adds no further behavioral context (e.g., no mention of error handling, performance impact, or interpretation of the plan).

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?

Description is short and includes structured Args/Returns, making it easy to parse. It wastes no words, though the Returns section could be more concise.

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?

The tool returns an execute plan, but the description does not elaborate on its format or interpretation. Given that an output schema exists (not shown), the description is sparse and lacks sufficient context for understanding the result.

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 0%, so the description carries full burden. The docstring style 'Args' section provides basic explanations ('The ID of the RDS instance') that add minimal value beyond the parameter names, but do not fully compensate for the missing schema descriptions.

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?

Description clearly states 'show sql execute plan', which is a specific verb+resource combination. It distinguishes from siblings like query_sql (runs queries) and show_create_table (shows table schema).

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 alternatives such as query_sql or describe_slow_log_records. The description does not provide context for selection.

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

get_current_timeA
Read-only

Get the current time.

Returns:
    Dict[str, Any]: The response containing the current time.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, so the agent knows it's safe. The description adds that it returns a dict with current time, but no details on timezone, precision, or side effects. Adequate but not rich.

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?

Extremely concise: one sentence plus return type annotation. No wasted words, front-loaded with purpose.

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 zero-parameter tool, it is mostly complete. However, the lack of an output schema means the agent has no details on the dictionary structure (e.g., keys, time format). Adequate but could be improved.

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?

No parameters, schema coverage is 100%. The description adds value by specifying the return type (Dict) and content ('current time'), which is beyond the empty schema.

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 clearly states 'Get the current time' with a specific verb and resource. It is distinct from sibling tools which are all database-related operations.

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?

No explicit guidance on when to use this tool vs alternatives, but the purpose is self-explanatory and alternatives are all database operations. Lack of context on timezone or format is a minor gap.

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

modify_db_instance_descriptionC
modify db instance description.
Args:
    region_id: The region ID of the RDS instance.
    db_instance_id: The ID of the RDS instance.
    description: The RDS instance description.
Returns:
    dict[str, Any]: The response.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
descriptionYes
db_instance_idYes

TDQS

C2.6/5.0
Behavior2/5

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

The description does not disclose any behavioral traits such as destructive nature, required permissions, or side effects. With no annotations, the description fails to inform the agent about the operation's implications.

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

Conciseness3/5

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

The description is short and follows a docstring format, but it includes redundant elements (e.g., 'Returns: dict[str, Any]') that add no value. It is concise but not optimally structured for AI consumption.

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?

With no output schema, no annotations, and incomplete parameter explanations, the description lacks completeness. It does not explain what the modification entails or what the response contains.

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 description repeats the parameter names with minimal context (e.g., 'region_id: The region ID'). Schema description coverage is 0%, and the description adds no meaningful semantics beyond what the parameter names already convey.

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

Purpose4/5

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

The description clearly states that the tool modifies a DB instance description, which distinguishes it from sibling tools like 'modify_db_instance_spec' or 'modify_parameter'. However, it lacks explicit differentiation or scope clarification.

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 is provided on when to use this tool versus alternatives. There are no when-to-use, when-not-to-use, or prerequisite conditions mentioned.

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

modify_db_instance_specB

Modify RDS instance specifications.

Args:
    region_id: The region ID of the RDS instance.
    dbinstance_id: The ID of the RDS instance.
    dbinstance_class: Target instance specification.
    dbinstance_storage: Target storage space in GB.
    pay_type: Instance payment type. Values: Postpaid, Prepaid, Serverless.
    effective_time: When the new configuration takes effect. Values: Immediate, MaintainTime, ScheduleTime.
    switch_time: Scheduled switch time in format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
    switch_time_mode: Switch time mode. Values: Immediate, MaintainTime, ScheduleTime.
    source_biz: Source business type.
    dedicated_host_group_id: Dedicated host group ID.
    zone_id: Zone ID.
    vswitch_id: VSwitch ID.
    category: Instance category.
    instance_network_type: Instance network type.
    direction: Specification change direction. Values: UP, DOWN.
    auto_pause: Whether to enable auto pause for Serverless instances.
    max_capacity: Maximum capacity for Serverless instances.
    min_capacity: Minimum capacity for Serverless instances.
    switch_force: Whether to force switch for Serverless instances.
    client_token: Client token for idempotency, max 64 ASCII characters.

Returns:
    Dict[str, Any]: The response containing the request ID.
ParametersJSON Schema
NameRequiredDescriptionDefault
zone_idNo
categoryNo
pay_typeNo
directionNo
region_idYes
auto_pauseNo
source_bizNo
vswitch_idNo
switch_timeNo
client_tokenNo
max_capacityNo
min_capacityNo
switch_forceNo
dbinstance_idYes
effective_timeNo
dbinstance_classNo
switch_time_modeNo
dbinstance_storageNo
instance_network_typeNo
dedicated_host_group_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. It only says 'modify' but does not disclose side effects like potential downtime, restart, or data loss. Behavioral traits such as destructive nature are not addressed.

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?

One-line purpose followed by a structured parameter list. No extraneous text. Efficient and front-loaded, though the list is long due to 20 parameters.

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?

With output schema present, return description is minimal but acceptable. However, the description does not explain constraints like whether storage can only be increased, or which parameter combinations are invalid. Overall adequate but with gaps.

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 description coverage is 0%, so description must add meaning. It provides brief explanations for each parameter (e.g., 'pay_type: Instance payment type. Values: Postpaid, Prepaid, Serverless.'), but some (e.g., 'zone_id: Zone ID') are vague. Adds some value but not comprehensive.

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 starts with 'Modify RDS instance specifications,' which clearly states the verb and resource. It distinguishes from sibling tools like create_db_instance (creating) and describe_db_instances (reading).

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 alternatives, nor any prerequisites or conditions. For example, it doesn't mention that the RDS instance must exist or must be in a specific state.

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

modify_parameterA

Modify RDS instance parameters.

Args:
    region_id: The region ID of the RDS instance.
    dbinstance_id: The ID of the RDS instance.
    parameters (Dict[str, str], optional): Parameters and their values in JSON format.
        Example: {"delayed_insert_timeout": "600", "max_length_for_sort_data": "2048"}
    parameter_group_id: Parameter template ID.
    forcerestart: Whether to force restart the database. Default: False.
    switch_time_mode: Execution time mode. Values: Immediate, MaintainTime, ScheduleTime. Default: Immediate.
    switch_time: Scheduled execution time in format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
    client_token: Client token for idempotency, max 64 ASCII characters.

Returns:
    Dict[str, Any]: The response containing the request ID.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
parametersNo
switch_timeNo
client_tokenNo
forcerestartNo
dbinstance_idYes
switch_time_modeNoImmediate
parameter_group_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the burden. It includes behavioral details like forcerestart and switch_time_mode, but does not disclose permissions, rate limits, or side effects beyond what is implied by parameters. It is adequate but not comprehensive.

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 well-structured with a clear one-line purpose, then systematic parameter documentation. Every sentence adds value, and it is front-loaded. Efficient use of space.

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?

Given the complexity (8 parameters, nested object, no annotations) and presence of output schema, the description covers all parameters and return value. It is complete for an API tool, explaining all inputs and expected output.

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%, but the description fully compensates. It details all 8 parameters with types, examples, defaults, and constraints (e.g., max 64 characters for client_token). Adds significant meaning beyond the schema.

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 states 'Modify RDS instance parameters' with a specific verb and resource. It clearly distinguishes from sibling tools like modify_db_instance_spec, which modifies instance specs rather than parameters.

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 provides clear context that the tool modifies parameters, but does not explicitly state when to use it versus alternatives or when not to use it. No exclusions or prerequisites are mentioned.

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

modify_security_ipsB

modify security ips。

Args:
    region_id (str): RDS instance region id.
    dbinstance_id (str): RDS instance id.
    security_ips (str): security ips list, separated by commas.
    whitelist_network_type (str, optional): whitelist network type.
        - MIX: mixed network type
        - Classic: classic network
        - VPC: vpc
        default value: MIX
    security_ip_type (str, optional): security ip type.
        - normal: normal security ip
        - hidden: hidden security ip
    dbinstance_ip_array_name (str, optional): security ip array name.
    dbinstance_ip_array_attribute (str, optional): security ip array attribute.
        - hidden: hidden security ip
        - normal: normal security ip
    client_token (str, optional): idempotency token, max 64 ascii characters.

Returns:
    Dict[str, Any]: response contains request id.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
client_tokenNo
security_ipsYes
dbinstance_idYes
security_ip_typeNo
whitelist_network_typeNoMIX
dbinstance_ip_array_nameNo
dbinstance_ip_array_attributeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided; description lacks details on side effects (e.g., replacement vs. append), required permissions, or idempotency behavior beyond mentioning client_token.

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?

The description is structured with an Args block and return type, front-loaded with the purpose, but contains some verbosity in parameter listing.

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?

All parameters are explained, but the description lacks overall operational context (e.g., whether IPs are replaced or appended, error scenarios) and the return type is minimal despite an existing output schema.

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?

Schema description coverage is 0%, but the description adds detailed meaning for most parameters, including options for whitelist_network_type and security_ip_type, compensating for the lack of schema descriptions.

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

Purpose4/5

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

The description clearly states the verb 'modify' and resource 'security ips' for an RDS instance, but does not differentiate from sibling tools like attach_whitelist_template_to_instance or describe_db_instance_ip_allowlist.

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 alternatives, nor any prerequisites or conditions for use.

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

query_sqlB
Read-only
execute read-only sql likes show xxx, select xxx
Args:
    dbinstance_id (str): The ID of the RDS instance.
    region_id(str): the region id of instance.
    db_name(str): the db name for execute sql.
    sql(str): the sql to be executed.
Returns:
    the sql result.
ParametersJSON Schema
NameRequiredDescriptionDefault
sqlYes
db_nameYes
region_idYes
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already provide readOnlyHint: true, and the description repeats 'read-only' without adding additional behavioral details such as error handling, timeout, or result size limits. The description adds minimal value beyond annotations.

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?

The description is concise with two sentences and a parameter list. It front-loads the purpose, and every part contributes meaning. Slightly under-specified for completeness but efficient.

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?

Given the tool has 4 required parameters and an output schema (not detailed), the description covers core semantics but lacks detail on the output format ('the sql result' is vague). For basic usage it is adequate, but could be more complete.

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?

Despite 0% schema coverage, the description includes an Args section with brief explanations for each parameter (e.g., 'dbinstance_id: The ID of the RDS instance'), adding meaning beyond the schema titles. However, descriptions are minimal and could be more informative.

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 explicitly states 'execute read-only sql likes show xxx, select xxx', clearly indicating the tool is for read-only SQL queries. It specifies SQL command types and distinguishes from sibling tools like 'explain_sql' or 'show_create_table'.

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 implies use for read-only queries but does not provide explicit guidance on when to use this tool versus alternatives like 'explain_sql' or modifications. No exclusions or when-not-to-use are mentioned.

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

restart_db_instanceA

Restart an RDS instance.

Args:
    region_id (str): The region ID of the RDS instance.
    dbinstance_id (str): The ID of the RDS instance.
    effective_time (str, optional): When to restart the instance. Options:
        - Immediate: Restart immediately
        - MaintainTime: Restart during maintenance window
        - ScheduleTime: Restart at specified time
        Default: Immediate
    switch_time (str, optional): The scheduled restart time in format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
        Required when effective_time is ScheduleTime.
    client_token (str, optional): Idempotency token, max 64 ASCII characters.

Returns:
    Dict[str, Any]: Response containing the request ID.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
switch_timeNo
client_tokenNo
dbinstance_idYes
effective_timeNoImmediate

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries full burden for behavioral disclosure. It explains parameters like effective_time and client_token for idempotency, but fails to mention that restarting may disrupt connections or require authorization. The impact of the operation is not conveyed.

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?

The description is well-structured with a clear parameter list and return type. It is slightly verbose but every sentence adds value. Could be condensed slightly, but it remains efficient.

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 restart operation, the description covers input parameters and output but omits critical context like potential downtime, required permissions, or related sibling tools for checking instance state. With an output schema present, return value explanation is adequate.

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?

The description adds significant meaning beyond the schema, which has no docstrings (0% coverage). It explains effective_time options, switch_time format and condition, and client_token purpose. The parameter details are clear and actionable.

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 clearly states 'Restart an RDS instance.' This is a specific verb+resource combination. Among siblings, no other tool performs restart, so it is well-differentiated.

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?

The description does not provide any guidance on when to use this tool versus alternatives. It lacks context about prerequisites, such as checking the instance status using describe_db_instances, or when not to restart (e.g., during backups).

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

show_create_tableB
Read-only
show create table db_name.table_name
Args:
    dbinstance_id (str): The ID of the RDS instance.
    region_id(str): the region id of instance.
    db_name(str): the db name for table.
    table_name(str): the table name.
Returns:
    the sql result.
ParametersJSON Schema
NameRequiredDescriptionDefault
db_nameYes
region_idYes
table_nameYes
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true. The description adds that it returns SQL results, which is consistent. However, no behavioral details are given about error handling or permissions beyond the parameter list.

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

Conciseness3/5

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

The description is short but structured as a docstring with parameter list and return. However, the opening line 'show create table db_name.table_name' may be misinterpreted as usage syntax rather than a purpose statement. Could be more front-loaded.

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?

Despite an output schema existing, the description provides only basic parameter descriptions and no context on typical usage or integration with sibling tools. The tool has 4 required parameters and needs more complete guidance.

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 description coverage is 0%, so the description must compensate. It provides brief explanations for each parameter (e.g., 'the ID of the RDS instance'). While minimal, these add meaning beyond the parameter names.

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 clearly states the tool shows the CREATE TABLE statement for a given table. The verb 'show' and resource 'create table' are specific, and the purpose is distinct from sibling tools like explain_sql or show_largest_table.

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 is provided on when to use this tool versus alternatives like explain_sql or query_sql. The description simply lists parameters without context for selecting the tool.

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

show_engine_innodb_statusB
Read-only
show engine innodb status in db.
Args:
    dbinstance_id (str): The ID of the RDS instance.
    region_id(str): the region id of instance.
Returns:
    the sql result.
ParametersJSON Schema
NameRequiredDescriptionDefault
region_idYes
dbinstance_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior3/5

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

The annotations already indicate readOnlyHint=true, so the description adds minimal behavioral context, only stating 'Returns: the sql result.' This is acceptable given the annotations, but provides no details about the exact output format or any side effects.

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?

The description is short and to the point, with a clear structure of purpose, arguments, and returns. However, it could be more concise by removing unnecessary labels like 'Args:' and 'Returns:' if the schema already provides structure.

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?

Given the existence of an output schema, the return value description is less critical. However, the description lacks any contextual guidance, such as typical use cases or relationship to sibling tools, making it minimally complete.

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?

With 0% schema description coverage, the description must compensate by explaining parameters. It lists both parameters with their types and descriptions, but these descriptions are essentially restatements of the parameter names (e.g., 'The ID of the RDS instance'). This adds minimal meaning beyond the schema.

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

Purpose4/5

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

The description clearly states the action ('show engine innodb status') and the resource ('in db'), making it easy to understand what the tool does. However, it does not differentiate it from sibling tools that also operate on DB instances, such as 'describe_db_instance_parameters' or 'query_sql'.

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 is provided on when to use this tool versus alternatives. It does not mention prerequisites, contexts, or exclusions, leaving the agent without information to select the appropriate tool among many database-related siblings.

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

show_largest_tableA
Read-only

Query the top few tables with the highest space occupancy

ParametersJSON Schema
NameRequiredDescriptionDefault
topKNoTo display the number of the top few largest tables
region_idYesThe region ID of the RDS instance.
dbinstance_idYesThe ID of the RDS instance.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description merely adds 'highest space occupancy' context. No additional behavioral traits (e.g., limitations, side effects) are disclosed beyond the annotation.

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?

The description is a single, clear sentence with no filler. It is well-front-loaded but could be slightly more informative without becoming verbose.

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 the presence of an output schema, annotations, and full parameter descriptions, the description is adequate for a straightforward query tool. It covers the essential purpose and context.

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% with each parameter already described. The description adds no extra meaning beyond the schema, meeting the baseline for high coverage.

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 'Query the top few tables with the highest space occupancy' uses a specific verb ('Query') and clearly identifies the resource ('tables') and context ('highest space occupancy'). It effectively distinguishes itself from the sibling 'show_largest_table_fragment' which focuses on fragments.

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?

The description provides no guidance on when to use this tool versus alternatives like 'show_largest_table_fragment' or when not to use it. It lacks explicit context for when-to-use or when-not-to-use.

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

show_largest_table_fragmentB
Read-only

Query the tables with the largest table fragments

ParametersJSON Schema
NameRequiredDescriptionDefault
topKNoTo display the number of the top few largest tables
region_idYesThe region ID of the RDS instance.
dbinstance_idYesThe ID of the RDS instance.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, and the description uses 'Query' which aligns. No additional behavioral traits are disclosed (e.g., performance, permissions). With annotations present, the bar is lower, so a score of 3 is appropriate.

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?

The description is a single, concise sentence (7 words) that is front-loaded with the action. It earns its place but could benefit from a bit more detail on scope.

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?

Given the tool's moderate complexity (3 params, output schema exists), the description is minimal. It doesn't elaborate on return values or ordering, but the output schema presumably covers that. Not complete enough for higher score.

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?

Input schema coverage is 100% with descriptions for all parameters. The description adds no extra meaning beyond the schema (e.g., it doesn't explain how topK relates to fragment size). Baseline 3 is adequate.

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

Purpose4/5

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

The description 'Query the tables with the largest table fragments' clearly states the action (query) and the target (tables with largest fragments). It is specific, though it does not explicitly differentiate from sibling 'show_largest_table' which may cover overall table sizes.

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?

The description provides no guidance on when to use this tool versus alternatives like 'show_largest_table' or others. No prerequisites or usage context are given.

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

TDQS

B3/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but there is some overlap between describe_db_instance_performance and describe_monitor_metrics (both query metrics), and a few tools like query_sql vs show_* tools could be confused. Additionally, attach_whitelist_template_to_instance has an incorrect description matching allocate_instance_public_connection, which may mislead agents.

Naming Consistency4/5

The naming generally follows a verb_noun pattern (e.g., describe_db_instance_*, modify_db_instance_*), but there are minor inconsistencies like show_largest_table (no verb prefix), get_current_time (uses 'get' instead of describe/query), and explain_sql (verb_noun but different verb). Overall, the pattern is predictable.

Tool Count5/5

With 36 tools covering instance lifecycle, monitoring, SQL execution, and network management, the count is well-suited for the RDS domain. Each tool adds clear value, and the set is neither too sparse nor overly bloated.

Completeness2/5

The tool surface lacks critical operations: no tool to delete an RDS instance, no create/modify/delete database tools (except via query_sql), and no backup/restore functionality. These gaps will likely cause agent failures when performing cleanup or database management tasks.

Maintenance

ActivityNo data
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    A server that provides access to Alibaba Cloud resources including ECS, VPC, and CloudMonitor through API and OOS implementations, enabling resource management and monitoring via a unified interface.
    34
    128
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for connecting to databases (PostgreSQL, MySQL, SQL Server, Redis) enabling SQL queries, table exploration, and Redis key-value operations.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aliyun/alibabacloud-rds-openapi-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server