switch-database
Switch between databases on the MSSQL MCP Server by specifying the target database name. Designed for efficient database management and query execution.
Instructions
切換到指定的資料庫
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | 要切換到的資料庫名稱 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"database": {
"description": "要切換到的資料庫名稱",
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}