.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/executeautomation/mcp-database-server
home/mcp-servers/executeautomation/mcp-database-server
executeautomation avatar

mcp-database-server

byexecuteautomation· 1 MCP server

Installs

3.5k

Stars

377

Forks

97

Category

Databases

View on GitHub

TL;DR

This MCP (Model Context Protocol) server provides database access capabilities to Claude, supporting SQLite, SQL Server, PostgreSQL, and MySQL databases.

How to install mcp-database-server?

executeautomation/mcp-database-server
$git clone https://github.com/executeautomation/mcp-database-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-database-server by running `git clone https://github.com/executeautomation/mcp-database-server`, then use it for the current task and follow its documentation at https://github.com/executeautomation/mcp-database-server.

Files · 1

View on GitHub
README.md
1[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/executeautomation-mcp-database-server-badge.png)](https://mseep.ai/app/executeautomation-mcp-database-server)
2 
3# MCP Database Server
4 
5This MCP (Model Context Protocol) server provides database access capabilities to Claude, supporting SQLite, SQL Server, PostgreSQL, and MySQL databases.
6 
7## Installation
8 
91. Clone the repository:
10```
11git clone https://github.com/executeautomation/mcp-database-server.git
12cd mcp-database-server
13```
14 
152. Install dependencies:
16```
17npm install
18```
19 
203. Build the project:
21```
22npm run build
23```
24 
25## Usage Options
26 
27There are two ways to use this MCP server with Claude:
28 
291. **Direct usage**: Install the package globally and use it directly
302. **Local development**: Run from your local development environment
31 
32### Direct Usage with NPM Package
33 
34The easiest way to use this MCP server is by installing it globally:
35 
36```bash
37npm install -g @executeautomation/database-server
38```
39 
40This allows you to use the server directly without building it locally.
41 
42### Local Development Setup
43 
44If you want to modify the code or run from your local environment:
45 
461. Clone and build the repository as shown in the Installation section
472. Run the server using the commands in the Usage section below
48 
49## Usage
50 
51### SQLite Database
52 
53To use with an SQLite database:
54 
55```
56node dist/src/index.js /path/to/your/database.db
57```
58 
59### SQL Server Database
60 
61To use with a SQL Server database:
62 
63```
64node dist/src/index.js --sqlserver --server <server-name> --database <database-name> [--user <username> --password <password>]
65```
66 
67Required parameters:
68- `--server`: SQL Server host name or IP address
69- `--database`: Name of the database
70 
71Optional parameters:
72- `--user`: Username for SQL Server authentication (if not provided, Windows Authentication will be used)
73- `--password`: Password for SQL Server authentication
74- `--port`: Port number (default: 1433)
75 
76### PostgreSQL Database
77 
78To use with a PostgreSQL database:
79 
80```
81node dist/src/index.js --postgresql --host <host-name> --database <database-name> [--user <username> --password <password>]
82```
83 
84Required parameters:
85- `--host`: PostgreSQL host name or IP address
86- `--database`: Name of the database
87 
88Optional parameters:
89- `--user`: Username for PostgreSQL authentication
90- `--password`: Password for PostgreSQL authentication
91- `--port`: Port number (default: 5432)
92- `--ssl`: Enable SSL connection (true/false)
93- `--connection-timeout`: Connection timeout in milliseconds (default: 30000)
94 
95### MySQL Database
96 
97#### Standard Authentication
98 
99To use with a MySQL database:
100 
101```
102node dist/src/index.js --mysql --host <host-name> --database <database-name> --port <port> [--user <username> --password <password>]
103```
104 
105Required parameters:
106- `--host`: MySQL host name or IP address
107- `--database`: Name of the database
108- `--port`: Port number (default: 3306)
109 
110Optional parameters:
111- `--user`: Username for MySQL authentication
112- `--password`: Password for MySQL authentication
113- `--ssl`: Enable SSL connection (true/false or object)
114- `--connection-timeout`: Connection timeout in milliseconds (default: 30000)
115 
116#### AWS IAM Authentication
117 
118For Amazon RDS MySQL instances with IAM database authentication:
119 
120**Prerequisites:**
121- AWS credentials must be configured (the RDS Signer uses the default credential provider chain)
122- Configure using one of these methods:
123 - `aws configure` (uses default profile)
124 - `AWS_PROFILE=myprofile` environment variable
125 - `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables
126 - IAM roles (if running on EC2)
127 
128```
129node dist/src/index.js --mysql --aws-iam-auth --host <rds-endpoint> --database <database-name> --user <aws-username> --aws-region <region>
130```
131 
132Required parameters:
133- `--host`: RDS endpoint hostname
134- `--database`: Name of the database
135- `--aws-iam-auth`: Enable AWS IAM authentication
136- `--user`: AWS IAM username (also the database user)
137- `--aws-region`: AWS region where RDS instance is located
138 
139Note: SSL is

Preview

executeautomation/mcp-database-serverexecuteautomation/mcp-database-server

[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/executeautomation-mcp-database-server-badge.png)](https://mseep.ai/app/executeautomation-mcp-databas

# MCP Database Server

This MCP (Model Context Protocol) server provides database access capabilities to Claude, supporting SQLite, SQL Server, PostgreSQL, and MySQL databases.

## Installation

Repoexecuteautomation/mcp-database-server
TypeMCP Servers
CategoryDatabases
UpdatedAug 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcp-serverposgresql

Related

6 picks
Type
  1. rafaelcartenet avatarmcp-databricks-serverModel Context Protocol (MCP) server for Databricks that empowers AI agents to autonomously interact with Unity Catalog metadata. Enables data discovery, lineage analysis, and intelligent SQL execution.MCP ServersMar 20262.4M40
  2. qdrant avatarmcp-server-qdrantAn official Qdrant Model Context Protocol (MCP) server implementationMCP ServersJul 20262.2M1.5k
  3. supabase avatarSupabase MCPQuery databases, manage projects and deploy edge functionsMCP Serverstoday387k2.8k
  4. mongodb-js avatarmongodb-mcp-serverMongoDB Model Context Protocol ServerMCP ServersJul 2026316k1.1k
  5. ahmedmustahid avatarpostgres-mcp-serverMCP server for interacting with PostgreSQL databasesMCP ServersJul 2025279k31
  6. benborla avatarmcp-server-mysqlMCP server for interacting with MySQL databases with write operations supportMCP ServersJul 202659k2.0k