-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver-config-example.json
More file actions
48 lines (48 loc) · 1.03 KB
/
Copy pathserver-config-example.json
File metadata and controls
48 lines (48 loc) · 1.03 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"host": "127.0.0.1",
"port": 3000,
"transport": "stdio",
"enableHSTS": false,
"trustProxy": false,
"toolFilter": "starter",
"allowedIoRoots": [
"C:/temp/mcp-sandbox",
"/tmp/mcp-sandbox",
"/app/data"
],
"auditConfig": {
"enabled": true,
"logPath": "/app/data/audit.jsonl",
"redact": true,
"auditReads": false,
"maxSizeBytes": 10485760,
"backup": {
"enabled": true,
"includeData": false,
"maxDataSizeBytes": 1048576
}
},
"databases": [
{
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "mcp_user",
"password": "secure_password",
"database": "testdb",
"pool": {
"connectionLimit": 10,
"acquireTimeout": 10000,
"waitForConnections": true,
"queueLimit": 0
}
}
],
"oauth": {
"enabled": false,
"issuer": "https://auth.example.com",
"audience": "mysql-mcp-client",
"jwksUri": "https://auth.example.com/.well-known/jwks.json",
"clockTolerance": 60
}
}