We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fritzprix/chess-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
inspector.sh•553 B
#!/bin/bash
# Ensure we are in the project root
cd "$(dirname "$0")"
# Activate Virtual Environment
if [ -d ".venv" ]; then
source .venv/bin/activate
else
echo "Virtual environment not found. Please run 'python -m venv .venv' and install requirements first."
exit 1
fi
echo "Starting MCP Inspector..."
echo "This will launch a web interface to test the Chess Server."
# Run Inspector wrapping the Python server
# Using -y to automatically say yes to installation if needed
npx -y @modelcontextprotocol/inspector python -m src.mcp_server