This package contains everything needed to set up the SkySQL MCP (Model Context Protocol) server, which provides a powerful interface for managing SkySQL (MySQL/MariaDB) database instances and interacting with SkyAI Agents. - Launch and manage serverless MariaDB database instances - Interact with AI-powered database agents - Execute SQL queries directly on SkySQL (MySQL/MariaDB) instances - Manage
Add this skill
npx mdskills install skysqlinc/skysql-mcpWell-documented MCP server for managing MariaDB instances with clear setup but missing tool specifications
1# SkySQL MCP Server23[](https://archestra.ai/mcp-catalog/skysqlinc__skysql-mcp)4[](https://smithery.ai/server/@skysqlinc/skysql-mcp)56This package contains everything needed to set up the SkySQL MCP (Model Context Protocol) server, which provides a powerful interface for managing SkySQL (MySQL/MariaDB) database instances and interacting with SkyAI Agents.78## Features910- Launch and manage serverless MariaDB database instances11- Interact with AI-powered database agents12- Execute SQL queries directly on SkySQL (MySQL/MariaDB) instances13- Manage database credentials and IP allowlists14- List and monitor database services1516## Installation1718#### Prerequisites19- Python 3.10 or higher20- A SkySQL API key2122### Option 1: Run locally2324#### Installation steps25261. Clone the repository:27 ```bash28 git clone git@github.com:skysqlinc/skysql-mcp.git29 cd skysql-mcp30 ```31322. Run the installation script:33 ```bash34 chmod +x install.sh35 ./install.sh36 ```37383. Create a `.env` file in the root directory of the cloned git repository with your SkySQL API key. Obtain API key by signing up for free on [SkySQL](https://app.skysql.com).3940 ```41 SKYSQL_API_KEY=<your_skysql_api_key_here>42 ```43444. Use [MCP CLI tool](https://github.com/wong2/mcp-cli) to test the server interactively.45 ```46 npx @wong2/mcp-cli uv run python src/mcp-server/server.py47 ```48495. Configure in `Cursor.sh` manually5051 For Mac/Linux:52 ```bash53 chmod +x launch.sh54 ```55Update `mcp.json`:56- command `"<full-path-to>/skysql-mcp/launch.sh"` for Mac/Linux and `"<full-path-to>\\skysql-mcp\\launch.bat"` for Windows.57- `SKYSQL_API_KEY` with your SkySQL API key5859Copy the `mcp.json` included in the repo to Cursor MCP Settings6061### Option 2: Installing via `Smithery.ai`6263You can use Smithery.ai to test the MCP server via their UI. Follow the installation instructions from [smithery.ai](https://smithery.ai/server/@skysqlinc/skysql-mcp)6465For example, use the following command to install it in Cursor.sh IDE:66 ```bash67 npx -y @smithery/cli@latest install @skysqlinc/skysql-mcp --client cursor --profile <your-smithery-profile> --key <your-smithery-kay>68 ```69For Windsurf:7071 ```bash72 npx -y @smithery/cli@latest install @skysqlinc/skysql-mcp --client windsurf --profile <your-smithery-profile> --key <your-smithery-key>73 ```74
Full transparency — inspect the skill content before installing.