f8c82b8544
- Introduced `apify_mcp.py` for local MCP server handling Apify web scraping tasks. - Created `mascarade_mcp_server.py` to expose tools for Mascarade LLM Router, including health checks and model listings. - Added shell scripts `run_apify_mcp.sh` and `run_mascarade_mcp.sh` for easy execution of the respective servers. - Added multiple documentation files for workspace audit and action plans.
9 lines
262 B
Bash
Executable File
9 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# MCP server for Mascarade LLM Router
|
|
# Exposes: list_models, chat, health, list_providers
|
|
set -euo pipefail
|
|
|
|
MASCARADE_URL="${MASCARADE_URL:-http://localhost:8100}"
|
|
|
|
exec python3 -u "$(dirname "$0")/mascarade_mcp_server.py" "$MASCARADE_URL"
|