-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathserver.json
More file actions
111 lines (111 loc) · 3.32 KB
/
server.json
File metadata and controls
111 lines (111 loc) · 3.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cyanheads/git-mcp-server",
"description": "Comprehensive Git MCP server enabling native git tools including clone, commit, worktree, & more.",
"repository": {
"url": "https://github.com/cyanheads/git-mcp-server",
"source": "github"
},
"version": "2.11.1",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@cyanheads/git-mcp-server",
"version": "2.11.1",
"runtimeHint": "bun",
"packageArguments": [
{
"type": "positional",
"value": "run"
},
{
"type": "positional",
"value": "start:stdio"
}
],
"environmentVariables": [
{
"name": "MCP_LOG_LEVEL",
"description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
"format": "string",
"isRequired": false,
"default": "info"
},
{
"name": "GIT_BASE_DIR",
"description": "Optional absolute path to restrict all git operations to a specific directory tree. Provides security sandboxing for multi-tenant or shared environments.",
"format": "string",
"isRequired": false
}
],
"transport": {
"type": "stdio"
}
},
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@cyanheads/git-mcp-server",
"version": "2.11.1",
"runtimeHint": "bun",
"packageArguments": [
{
"type": "positional",
"value": "run"
},
{
"type": "positional",
"value": "start:http"
}
],
"environmentVariables": [
{
"name": "MCP_HTTP_HOST",
"description": "The hostname for the HTTP server.",
"format": "string",
"isRequired": false,
"default": "127.0.0.1"
},
{
"name": "MCP_HTTP_PORT",
"description": "The port to run the HTTP server on.",
"format": "string",
"isRequired": false,
"default": "3015"
},
{
"name": "MCP_HTTP_ENDPOINT_PATH",
"description": "The endpoint path for the MCP server.",
"format": "string",
"isRequired": false,
"default": "/mcp"
},
{
"name": "MCP_AUTH_MODE",
"description": "Authentication mode to use: 'none', 'jwt', or 'oauth'.",
"format": "string",
"isRequired": false,
"default": "none"
},
{
"name": "MCP_LOG_LEVEL",
"description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
"format": "string",
"isRequired": false,
"default": "info"
},
{
"name": "GIT_BASE_DIR",
"description": "Optional absolute path to restrict all git operations to a specific directory tree. Provides security sandboxing for multi-tenant or shared environments.",
"format": "string",
"isRequired": false
}
],
"transport": {
"type": "streamable-http",
"url": "http://localhost:3015/mcp"
}
}
]
}