mysql database service.com
mysql database service.com logo

MySQL Database Service

MySQL database service that enables database operations and resource management through a structured Express.js server w...

Created byApr 23, 2025

MySQL MCP

    • CRUD
    • SQL
    • MCP Cursor
    • Node.js 18.0.0
    • MySQL
        1. - `.env.example` `.env` - `.env` MySQL

        Cursor

        1. Cursor MCP
        • 1: "MCP"
        • 2: MCP
        • 3: `/connect-mcp http://localhost:3001/sse`
        1. MySQL
        1. ``` mysql://tables ```
        1. ``` mysql://schema/ ```
        1. ``` mysql://data/ ```
        1. ``` create-table tableName=" " schema="id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255)" ```
        1. ``` drop-table tableName=" " ```
        1. ``` insert-data tableName=" " data="{\"name\": \" \", \"age\": 30}" ```
        1. ``` update-data tableName=" " data="{\"name\": \" \"}" condition="{\"id\": 1}" ```
        1. ``` delete-data tableName=" " condition="{\"id\": 1}" ```
        1. ``` query-data tableName=" " fields="[\"id\",\"name\"]" condition="{\"age\": 30}" ```
        1. SQL ``` execute-sql sql="SELECT * FROM users WHERE age > 18" params="[]" ```
        1. ``` create-table-guide tableName=" " ```
        1. ``` insert-data-guide tableName=" " ```
        1. ``` database-operations ```
        1. ``` create-table tableName="users" schema="id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255) NOT NULL, email VARCHAR(255) UNIQUE, age INT" ```
        1. ``` insert-data tableName="users" data="{\"name\": \" \", \"email\": \"zhangsan@example.com\", \"age\": 30}" ```
        1. ``` mysql://data/users ```
          • MySQL
            MIT