File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,14 @@ startCommand:
4
4
configSchema :
5
5
# JSON Schema defining the configuration options for the MCP
6
6
type : object
7
+ required :
8
+ - githubPersonalAccessToken
7
9
properties :
8
- githubToken :
10
+ githubPersonalAccessToken :
9
11
type : string
10
12
title : GitHub Personal Access Token
11
- description : GitHub Personal Access Token with appropriate permissions
13
+ description : The personal access token for accessing the GitHub API.
12
14
secret : true # This marks the field as a secret, so it won't be logged
13
- required : ["githubToken"]
14
15
additionalProperties : false
15
16
commandFunction : |-
16
17
(config) => ({
@@ -19,6 +20,6 @@ startCommand:
19
20
"stdio"
20
21
],
21
22
"env": {
22
- "GITHUB_PERSONAL_ACCESS_TOKEN": config.githubToken
23
+ "GITHUB_PERSONAL_ACCESS_TOKEN": config.githubPersonalAccessToken
23
24
}
24
25
})
You can’t perform that action at this time.
0 commit comments