forked from tuannvm/slack-mcp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-schema.json
More file actions
50 lines (49 loc) · 1.7 KB
/
mcp-schema.json
File metadata and controls
50 lines (49 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MCP Client Configuration Schema",
"description": "Schema for defining MCP servers configuration for the MCP client.",
"type": "object",
"properties": {
"mcpServers": {
"type": "object",
"description": "A collection of MCP server configurations keyed by a unique identifier.",
"patternProperties": {
"^.*$": {
"type": "object",
"description": "Configuration for a single MCP server.",
"properties": {
"command": {
"type": "string",
"description": "The command or executable to start the MCP server."
},
"args": {
"type": "array",
"description": "The list of arguments to pass to the command.",
"items": {
"type": "string"
}
},
"env": {
"type": "object",
"description": "Environment variables required by the MCP server.",
"additionalProperties": {
"type": "string",
"description": "The value for an environment variable."
}
},
"disabled": {
"type": "boolean",
"description": "Optional flag to disable the server without removing its configuration."
}
},
"required": ["command"],
"additionalProperties": false
}
},
"minProperties": 1,
"additionalProperties": false
}
},
"required": ["mcpServers"],
"additionalProperties": false
}