-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
82 lines (82 loc) · 2.54 KB
/
server.json
File metadata and controls
82 lines (82 loc) · 2.54 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.rupinder2/mcp-orchestrator",
"description": "Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.",
"repository": {
"url": "https://github.com/rupinder2/mcp-orchestrator",
"source": "github"
},
"version": "0.1.2",
"packages": [
{
"registryType": "pypi",
"identifier": "mcp-orchestrator",
"version": "0.1.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "STORAGE_BACKEND",
"description": "Storage backend for tool cache. Use 'memory' for development or 'redis' for production.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "REDIS_URL",
"description": "Redis connection URL. Required only when STORAGE_BACKEND=redis.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SERVER_CONFIG_PATH",
"description": "Path to the server_config.json file listing downstream MCP servers.",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
},
{
"registryType": "pypi",
"identifier": "mcp-orchestrator",
"version": "0.1.2",
"transport": {
"type": "streamable-http",
"url": "http://localhost:{ORCHESTRATOR_PORT}/mcp"
},
"environmentVariables": [
{
"name": "ORCHESTRATOR_PORT",
"description": "Port for the HTTP transport server (default: 8080).",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "STORAGE_BACKEND",
"description": "Storage backend for tool cache. Use 'memory' for development or 'redis' for production.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "REDIS_URL",
"description": "Redis connection URL. Required only when STORAGE_BACKEND=redis.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SERVER_CONFIG_PATH",
"description": "Path to the server_config.json file listing downstream MCP servers.",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}