-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (27 loc) · 1 KB
/
.env.example
File metadata and controls
28 lines (27 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=yourpassword
DB_NAME=yourdatabase
# MCP Tool Configuration (OPTIONAL - can be overridden per project)
# Available values: list, read, create, update, delete, execute, ddl, utility
#
# This is the DEFAULT configuration for the MCP server
# Each project can override this by passing permissions as command-line argument
#
# Categories:
# - list: List databases, tables, schemas
# - read: SELECT queries, read data
# - create: INSERT new records
# - update: UPDATE existing records
# - delete: DELETE records
# - execute: Execute custom SQL (INSERT/UPDATE/DELETE)
# - ddl: Data Definition Language (CREATE/ALTER/DROP tables) - USE WITH CAUTION!
# - utility: Connection testing, connection info
#
# Example: MCP_CONFIG=list,read,utility (comma-separated, no spaces)
# Leave empty or comment out to enable all tools by default
#
# IMPORTANT: 'ddl' permission allows creating/altering/dropping tables!
# Only enable for development or when explicitly needed.
# MCP_CONFIG=