Skip to main content
Glama

MCP Platform

by jck411
run.sh727 B
#!/bin/bash # Enhanced script to run the MCP client with environment verification set -e cd "$(dirname "$0")" # Verify uv is available if ! command -v uv &> /dev/null; then echo "❌ UV not found. Please install uv first:" echo " curl -LsSf https://astral.sh/uv/install.sh | sh" exit 1 fi # Verify virtual environment exists if [ ! -d ".venv" ]; then echo "❌ Virtual environment not found. Running setup..." ./setup.sh fi # Verify critical dependencies echo "🔍 Verifying environment..." if ! uv run python -c "import fastmcp; import mcp" &> /dev/null; then echo "❌ Missing dependencies. Syncing..." uv sync --extra dev fi echo "🚀 Starting MCP Platform..." uv run python src/main.py

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jck411/MCP_BACKEND_OPENROUTER'

If you have feedback or need assistance with the MCP directory API, please join our Discord server