-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmcp_servers.example.json
More file actions
75 lines (75 loc) · 1.99 KB
/
mcp_servers.example.json
File metadata and controls
75 lines (75 loc) · 1.99 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
68
69
70
71
72
73
74
75
{
"mcpServers": {
"jenkins": {
"isActive": false,
"name": "jenkins",
"type": "stdio",
"description": "Jenkins CI/CD Integration",
"baseUrl": "",
"command": "python3",
"args": [
"/path/to/mcp-jenkins/server.py"
],
"env": {
"JENKINS_URL": "https://jenkins.example.com",
"JENKINS_USER": "admin",
"JENKINS_API_TOKEN": "your_jenkins_token"
},
"provider": "lanbaoshen",
"providerUrl": "https://github.com/lanbaoshen/mcp-jenkins",
"logoUrl": "",
"tags": ["cicd", "jenkins"],
"longRunning": true,
"timeout": 300,
"installSource": "manual",
"toolPrefix": "jenkins_",
"autoRegister": true
},
"github": {
"isActive": false,
"name": "github",
"type": "stdio",
"description": "GitHub Integration",
"baseUrl": "",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token"
},
"provider": "modelcontextprotocol",
"providerUrl": "https://github.com/modelcontextprotocol/servers",
"logoUrl": "",
"tags": ["github", "git"],
"longRunning": true,
"timeout": 300,
"installSource": "npm",
"toolPrefix": "github_",
"autoRegister": true
},
"example-streamable": {
"isActive": false,
"name": "example-streamable",
"type": "streamableHttp",
"description": "Example Streamable HTTP MCP Server",
"baseUrl": "http://localhost:9090",
"command": "",
"args": [],
"env": {},
"headers": {
"Authorization": "Bearer your_token_here"
},
"provider": "example",
"providerUrl": "https://example.com",
"logoUrl": "",
"tags": ["example", "streamable"],
"longRunning": true,
"timeout": 300,
"installSource": "manual",
"toolPrefix": "example_",
"autoRegister": true
}
}
}