drop_table
Remove a specified table from the MSSQL Database using the "MSSQL MCP Server" tool. Simplify database management by executing table deletion tasks via natural language commands.
Instructions
Drops a table from the MSSQL Database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to drop |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "Name of the table to drop",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}