We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/debugmcpdev/mcp-debugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-entrypoint.sh•370 B
#!/bin/sh
set -e
# Use mounted workspace if provided
if [ -d "/workspace" ]; then
cd /workspace
fi
# Start debugpy adapter in background
python3 tests/fixtures/python/debugpy_server.py --host 0.0.0.0 --port 5679 --no-wait &
DBG_PID=$!
# Start the MCP server (compiled JS)
node dist/index.js --log-level debug
# Graceful shutdown
trap "kill $DBG_PID" INT TERM
wait