insert_data
Execute SQL INSERT INTO queries to add data into a MySQL database table, simplifying data entry and management within the MySQL MCP Server.
Instructions
Inserts data into a table in the MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL INSERT INTO query to execute. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL INSERT INTO query to execute.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}