forked from MarcellM01/TinySearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglama.json
More file actions
24 lines (24 loc) · 749 Bytes
/
Copy pathglama.json
File metadata and controls
24 lines (24 loc) · 749 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
{
"$schema": "https://glama.ai/mcp/schemas/server.json",
"maintainers": [
"MarcellM01"
],
"baseImage": "debian:trixie-slim",
"nodeVersion": "26",
"pythonVersion": "3.12",
"buildSteps": [
"python -m venv /opt/tinysearch-venv",
"/opt/tinysearch-venv/bin/python -m pip install --upgrade pip",
"/opt/tinysearch-venv/bin/pip install -r requirements.txt",
"mkdir -p /ms-playwright /data/models",
"PLAYWRIGHT_BROWSERS_PATH=/ms-playwright /opt/tinysearch-venv/bin/python -m playwright install --with-deps chromium",
"chmod -R a+rX /ms-playwright /data/models"
],
"cmdArguments": [
"mcp-proxy",
"--",
"/opt/tinysearch-venv/bin/python",
"servers/mcp_server.py"
],
"placeholderArguments": {}
}