-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
55 lines (55 loc) · 1.25 KB
/
server.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"$schema": "https://schemas.nimblebrain.ai/v1/nimblebrain-server.schema.json",
"name": "ai.nimblebrain/webfetch",
"description": "Fetch web pages and answer questions about their content using Claude",
"version": "0.1.0",
"title": "WebFetch MCP Server",
"repository": {
"url": "https://github.com/NimbleBrainInc/mcp-webfetch",
"source": "https://github.com/NimbleBrainInc/mcp-webfetch"
},
"_meta": {
"ai.nimblebrain/v1": {
"runtime": "python:3.13",
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
},
"display": {
"category": "data",
"tags": [
"web",
"fetch",
"markdown",
"summarization"
]
},
"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
}
}
}
}