create_table
Use this tool to execute SQL CREATE TABLE statements in a MySQL database via the MCP server, enabling structured table creation and management.
Instructions
在 MySQL 数据库中创建新表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 要执行的 SQL CREATE TABLE 语句 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "要执行的 SQL CREATE TABLE 语句",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}