mcp-mysql-server

connect_db

Connect to MySQL database

Input Schema

NameRequiredDescriptionDefault
databaseYesDatabase name
hostYesDatabase host
passwordYesDatabase password
userYesDatabase user

Input Schema (JSON Schema)

{ "properties": { "database": { "description": "Database name", "type": "string" }, "host": { "description": "Database host", "type": "string" }, "password": { "description": "Database password", "type": "string" }, "user": { "description": "Database user", "type": "string" } }, "required": [ "host", "user", "password", "database" ], "type": "object" }