Add webscraper MCP server (7 tools, httpx+bs4, 15+ tests)

This commit is contained in:
Patrick Plate
2026-04-03 13:40:50 +02:00
parent 6623fe0337
commit 38a2b89bd3
9 changed files with 2266 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Webscraper MCP server runner
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
# Add ~/.local/bin to PATH for uv
export PATH="$HOME/.local/bin:$PATH"
# Sync dependencies if .venv doesn't exist
if [ ! -d ".venv" ]; then
uv sync
fi
# Run the server
cd "$BASEDIR"
uv run src/server.py