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
run-ubuntu-tests.cmd•752 B
@echo off
REM -----------------------------------------------------------------------------
REM Run full test suite inside the Ubuntu CI container
REM Approach: bind-mount the repository read-only, then copy it to /tmp inside
REM the container to avoid NTFS permission issues (EACCES) on node_modules.
REM
REM Prerequisite (one-time):
REM docker build -f docker/test-ubuntu.dockerfile -t mcp-debugger-ci .
REM
REM Usage:
REM scripts\run-ubuntu-tests.cmd
REM -----------------------------------------------------------------------------
docker run --rm -it ^
-v "%cd%":/workspace:ro ^
-w /workspace ^
mcp-debugger-ci ^
bash -lc "set -euo pipefail && cp -r /workspace /tmp/project && cd /tmp/project && npm ci && npm run test"