SimpleSQL MCP Server
Allows performing CRUD operations, creating tables, and seeding data on MySQL databases.
Allows performing CRUD operations, creating tables, and seeding data on PostgreSQL databases.
Allows performing CRUD operations, creating tables, and seeding data on SQLite databases.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SimpleSQL MCP Servershow the users table schema"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SimpleSQL MCP Server
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
Related MCP server: mcp-db-server
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 SimpleSQLInstall dependencies:
npm installBuild the project:
npm run buildConfiguration
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=falsePostgreSQL Configuration
DB_TYPE=pg
DB_HOST=localhost
DB_PORT=5432
DB_USER=your_username
DB_PASSWORD=your_password
DB_NAME=your_database
SSL=falseSQLite Configuration
DB_TYPE=sqlite3
DB_NAME=./database.sqlite
# Note: HOST, PORT, USER, PASSWORD, and SSL are not needed for SQLiteBetter SQLite3 Configuration (Recommended for SQLite)
DB_TYPE=better-sqlite3
DB_NAME=./database.sqliteMCP 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 simplesqlAvailable 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": "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}
}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 rulesBuilding
npm run buildThis 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 dependenciesEnsure you've built the project with
npm run build
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 issuesLicense
MIT License
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Eqooid/SimpleSQL-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server