-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.21 KB
/
server.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"$schema": "https://schemas.nimblebrain.ai/v1/nimblebrain-server.schema.json",
"name": "ai.nimblebrain/echo",
"description": "Echo server for testing and debugging MCP connections",
"version": "0.1.5",
"title": "Echo MCP Server",
"repository": {
"url": "https://github.com/NimbleBrainInc/mcp-echo",
"source": "https://github.com/NimbleBrainInc/mcp-echo"
},
"_meta": {
"ai.nimblebrain/v1": {
"runtime": "python:3.13",
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
},
"display": {
"category": "developer-tools",
"tags": [
"testing",
"debugging",
"development"
]
},
"deployment": {
"protocol": "http",
"port": 8000,
"mcpPath": "/mcp"
},
"container": {
"healthCheck": {
"path": "/health",
"port": 8000
}
},
"resources": {
"limits": {
"memory": "512Mi",
"cpu": "1000m"
},
"requests": {
"memory": "256Mi",
"cpu": "250m"
}
},
"scaling": {
"minReplicas": 1,
"maxReplicas": 3
}
}
}
}