-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
56 lines (56 loc) · 1.7 KB
/
server.json
File metadata and controls
56 lines (56 loc) · 1.7 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
49
50
51
52
53
54
55
56
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.dataplat/dbatools-mcp-server",
"description": "MCP server for dbatools — exposes SQL Server management commands as MCP tools",
"repository": {
"url": "https://github.com/dataplat/dbatools-mcp-server",
"source": "github"
},
"version": "0.4.0",
"icons": [
{
"src": "https://dbatools.io/thor.png",
"mimeType": "image/png"
}
],
"packages": [
{
"registryType": "npm",
"identifier": "dbatools-mcp-server",
"version": "0.4.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DBATOOLS_SAFE_MODE",
"description": "Set to 'false' to allow write/destructive dbatools operations. Defaults to true (read-only safe mode).",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "MAX_OUTPUT_ROWS",
"description": "Maximum number of rows returned per command. Defaults to 100. Allowed range: 1–10000.",
"isRequired": false,
"isSecret": false,
"format": "number"
},
{
"name": "COMMAND_TIMEOUT_SECONDS",
"description": "Timeout in seconds for each dbatools command. Defaults to 60. Allowed range: 5–3600.",
"isRequired": false,
"isSecret": false,
"format": "number"
},
{
"name": "PWSH_EXE",
"description": "Path to the PowerShell executable. Defaults to 'pwsh'.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}