Skip to main content
Glama

MCP-Logic

MIT License
34
  • Linux
  • Apple
build-debug.sh620 B
#!/bin/bash # Build with detailed output to debug compilation issues echo "Building Docker image with debug output..." docker build --progress=plain -t mcp-logic-image . 2>&1 | tee build_log.txt if [ $? -eq 0 ]; then echo "Build successful! Running container..." # Kill any existing container with the same name docker kill mcp-logic 2>/dev/null || true docker rm mcp-logic 2>/dev/null || true docker run -it --rm \ -e MCP_PROXY_DEBUG=true \ -p 8080:8080 \ -v "$(pwd)/src:/app/src" \ --name mcp-logic \ mcp-logic-image else echo "Build failed. See build_log.txt for details." fi

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/angrysky56/mcp-logic'

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