Files
Kill_LIFE/tools/run_mascarade_mcp.sh
L'électron rare f8c82b8544 Add new tools and scripts for Apify MCP and Mascarade integration
- 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.
2026-03-25 00:17:02 +01:00

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"