-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathapp.json
More file actions
35 lines (35 loc) · 937 Bytes
/
app.json
File metadata and controls
35 lines (35 loc) · 937 Bytes
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
{
"name": "MCP Simple Tool Server",
"description": "A simple MCP server that exposes a website fetching tool",
"repository": "https://github.com/kirill-markin/weaviate-mcp-server",
"keywords": ["python", "mcp", "fetch", "web", "tool"],
"env": {
"MCP_SERVER_PORT": {
"description": "Port to run the server on",
"value": "8000",
"required": false
},
"MCP_SERVER_HOST": {
"description": "Host to bind the server to",
"value": "0.0.0.0",
"required": false
},
"DEBUG": {
"description": "Enable debug mode",
"value": "false",
"required": false
},
"MCP_USER_AGENT": {
"description": "Custom User-Agent for website fetching",
"value": "MCP Test Server (github.com/modelcontextprotocol/python-sdk)",
"required": false
}
},
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "eco"
}
}
}