SimpleSQL Server
БесплатноНе проверенMulti-database SQL operations MCP server that enables CRUD, table creation, and data seeding for MySQL, PostgreSQL, and SQLite through natural language.
Описание
Multi-database SQL operations MCP server that enables CRUD, table creation, and data seeding for MySQL, PostgreSQL, and SQLite through natural language.
README
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.
Features
- 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
Supported Databases
This MCP server supports the following databases through Knex.js:
- MySQL (via
mysql2driver) - PostgreSQL (via
pgdriver) - SQLite (via
sqlite3andbetter-sqlite3drivers) - MySQL (legacy via
mysqldriver)
Installation
- Clone the repository:
git clone <repository-url>
cd SimpleSQL
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration
Environment Variables
# 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)
Database-Specific Configuration Examples
MySQL Configuration
DB_TYPE=mysql2
DB_HOST=localhost
DB_PORT=3306
DB_USER=your_username
DB_PASSWORD=your_password
DB_NAME=your_database
SSL=false
PostgreSQL Configuration
DB_TYPE=pg
DB_HOST=localhost
DB_PORT=5432
DB_USER=your_username
DB_PASSWORD=your_password
DB_NAME=your_database
SSL=false
SQLite Configuration
DB_TYPE=sqlite3
DB_NAME=./database.sqlite
# Note: HOST, PORT, USER, PASSWORD, and SSL are not needed for SQLite
Better SQLite3 Configuration (Recommended for SQLite)
DB_TYPE=better-sqlite3
DB_NAME=./database.sqlite
MCP Server Setup
Using with Claude Desktop
Add 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"
}
}
}
}
Using as CLI Tool
You can also use this as a command-line tool:
# Install globally
npm install -g .
# Or run directly
npx simplesql
Available Tools
1. CRUD Operations (crud_tool)
Perform 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": "[email protected]"}
}
// Read records
{
"action": "read",
"table": "users",
"filter": {"name": "John Doe"}
}
// Update records
{
"action": "update",
"table": "users",
"data": {"email": "[email protected]"},
"filter": {"id": 1}
}
// Delete records
{
"action": "delete",
"table": "users",
"filter": {"id": 1}
}
2. Table Creation (create_table)
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"
}
}
3. Data Seeding (seed_data)
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
}
4. Connection Test (ping_tool)
Test database connectivity and server responsiveness.
Parameters: None
Development
Project Structure
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
Building
npm run build
This compiles TypeScript to JavaScript in the build/ directory and sets proper permissions for the CLI executable.
Dependencies
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
Troubleshooting
Common Issues
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
Testing Connection
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 issues
License
MIT License
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
Установка SimpleSQL Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/Eqooid/SimpleSQL-MCPFAQ
SimpleSQL Server MCP бесплатный?
Да, SimpleSQL Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для SimpleSQL Server?
Нет, SimpleSQL Server работает без API-ключей и переменных окружения.
SimpleSQL Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить SimpleSQL Server в Claude Desktop, Claude Code или Cursor?
Открой SimpleSQL Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare SimpleSQL Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
