A Model Context Protocol (MCP) server that provides SQL database operations for various database systems. This server enables AI assistants to perform CRUD operations, create tables, and seed data across multiple database backends.
- Multi-database support: MySQL, PostgreSQL, SQLite, and more
- CRUD operations: Create, Read, Update, Delete data in any table
- Table creation: Dynamically create tables with custom schemas
- Data seeding: Generate and insert dummy data for testing
- Connection testing: Ping tool to verify database connectivity
This MCP server supports the following databases through Knex.js:
- MySQL (via
mysql2driver) - PostgreSQL (via
pgdriver) - SQLite (via
sqlite3andbetter-sqlite3drivers) - MySQL (legacy via
mysqldriver)
- Clone the repository:
git clone <repository-url>
cd SimpleSQL- Install dependencies:
npm install- Build the project:
npm run build# Database Configuration
DB_TYPE=mysql # Database type: mysql, mysql2, pg, sqlite3, better-sqlite3
DB_HOST=localhost # Database host (not needed for SQLite)
DB_PORT=3306 # Database port (not needed for SQLite)
DB_USER=root # Database username (not needed for SQLite)
DB_PASSWORD= # Database password (not needed for SQLite)
DB_NAME=simple_sql_db # Database name / SQLite file path
SSL=false # Enable SSL connection (true/false)DB_TYPE=mysql2
DB_HOST=localhost
DB_PORT=3306
DB_USER=your_username
DB_PASSWORD=your_password
DB_NAME=your_database
SSL=falseDB_TYPE=pg
DB_HOST=localhost
DB_PORT=5432
DB_USER=your_username
DB_PASSWORD=your_password
DB_NAME=your_database
SSL=falseDB_TYPE=sqlite3
DB_NAME=./database.sqlite
# Note: HOST, PORT, USER, PASSWORD, and SSL are not needed for SQLiteDB_TYPE=better-sqlite3
DB_NAME=./database.sqliteAdd this server to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"simplesql": {
"command": "node",
"args": ["path/to/SimpleSQL/build/index.js"],
"env": {
"DB_TYPE": "mysql2",
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_USER": "your_username",
"DB_PASSWORD": "your_password",
"DB_NAME": "your_database",
"SSL": "false"
}
}
}
}You can also use this as a command-line tool:
# Install globally
npm install -g .
# Or run directly
npx simplesqlPerform Create, Read, Update, Delete operations on database tables.
Parameters:
action(string): The operation type - "create", "read", "update", "delete"table(string): The target table namedata(object, optional): Data for create/update operationsfilter(object, optional): Filter criteria for read/update/delete operations
Examples:
// Create a record
{
"action": "create",
"table": "users",
"data": {"name": "John Doe", "email": "john@example.com"}
}
// Read records
{
"action": "read",
"table": "users",
"filter": {"name": "John Doe"}
}
// Update records
{
"action": "update",
"table": "users",
"data": {"email": "newemail@example.com"},
"filter": {"id": 1}
}
// Delete records
{
"action": "delete",
"table": "users",
"filter": {"id": 1}
}Create new database tables with custom schemas.
Parameters:
table(string): The name of the table to createcolumns(object): Column definitions with name-type pairs
Example:
{
"table": "products",
"columns": {
"id": "INTEGER PRIMARY KEY AUTO_INCREMENT",
"name": "VARCHAR(255) NOT NULL",
"price": "DECIMAL(10,2)",
"created_at": "TIMESTAMP DEFAULT CURRENT_TIMESTAMP"
}
}Generate and insert dummy data into tables for testing.
Parameters:
table(string): The table name to seedcount(number, optional): Number of records to generate (default: 10)
Example:
{
"table": "users",
"count": 50
}Test database connectivity and server responsiveness.
Parameters: None
SimpleSQL/
├── src/ # TypeScript source files
│ ├── db.ts # Database connection logic
│ ├── index.ts # MCP server setup and tool definitions
│ └── tools/ # Individual tool implementations
│ ├── crud.ts # CRUD operations
│ ├── createTable.ts # Table creation
│ └── seedData.ts # Data seeding
├── build/ # Compiled JavaScript output
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── .env # Environment variables (create this)
└── .gitignore # Git ignore rules
npm run buildThis compiles TypeScript to JavaScript in the build/ directory and sets proper permissions for the CLI executable.
Runtime Dependencies:
@modelcontextprotocol/sdk: MCP server implementationknex: SQL query builderbetter-sqlite3,sqlite3: SQLite driversmysql,mysql2: MySQL driverspg: PostgreSQL driverdotenv: Environment variable loadingzod: Schema validation@faker-js/faker: Dummy data generation
-
Database Connection Failed
- Verify your environment variables are correct
- Ensure the database server is running
- Check firewall and network connectivity
-
Permission Denied
- For SQLite: Ensure write permissions to the database file location
- For MySQL/PostgreSQL: Verify user has required privileges
-
Module Not Found
- Run
npm installto install dependencies - Ensure you've built the project with
npm run build
- Run
Use the ping tool to test your database connection:
# The ping_tool will return "Pong!" if connection is successful
# or an error message if there are connection issuesMIT License
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request