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-build.sh•258 B
#!/bin/bash
# Build the Debug MCP Server Docker image
echo "Building Debug MCP Server Docker image..."
docker build -t debug-mcp-server .
echo
echo "Image built successfully!"
echo "To run the server use:"
echo " docker run -i --rm debug-mcp-server"
echo