-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
99 lines (99 loc) · 2.74 KB
/
server.json
File metadata and controls
99 lines (99 loc) · 2.74 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.rethunk/rethunk-mcp-typescript",
"description": "Rethunk MCP for TypeScript: Production-grade MCP server with code inspection and atomic git commits.",
"repository": {
"url": "https://github.com/Rethunk-Tech/rethunk-mcp-ts",
"source": "github"
},
"version": "2.8.1",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "rethunk-mcp-typescript",
"runtimeHint": "bun",
"version": "2.8.1",
"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"
}
],
"transport": {
"type": "stdio"
}
},
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "rethunk-mcp-typescript",
"runtimeHint": "bun",
"version": "2.8.1",
"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": "3010"
},
{
"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"
}
],
"transport": {
"type": "streamable-http",
"url": "http://localhost:3010/mcp"
}
}
]
}