-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcomplete-example.json
More file actions
67 lines (61 loc) · 1.91 KB
/
Copy pathcomplete-example.json
File metadata and controls
67 lines (61 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.github-mcp",
"name": "GitHub",
"alias": "gh",
"description": "Interact with GitHub repositories, issues, pull requests, and more through the GitHub API.",
"icon": "🐙",
"schema_version": "2.1",
"categories": ["developer-tools", "version-control"],
"tags": ["git", "code", "issues", "pr", "repos"],
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm", "-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:GITHUB_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "GITHUB_TOKEN",
"label": "GitHub Personal Access Token",
"description": "Token used to authenticate with GitHub API",
"type": "password",
"required": true,
"secret": true,
"placeholder": "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://github.com/settings/tokens/new",
"instructions": "1. Click 'Generate new token (classic)'\n2. Give it a name like 'McpMux'\n3. Select scopes: repo, read:org\n4. Click 'Generate token'\n5. Copy the token (starts with ghp_)",
"button_label": "Create Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a token at https://github.com/settings/tokens with repo scope"
},
"contributor": {
"name": "Model Context Protocol",
"github": "modelcontextprotocol",
"url": "https://modelcontextprotocol.io"
},
"links": {
"repository": "https://github.com/modelcontextprotocol/servers",
"documentation": "https://modelcontextprotocol.io/docs"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": true,
"prompts": false,
"read_only_mode": false
}
}