We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brianirish/laravel-mcp-companion'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Test script to verify Docker argument passing works correctly
# This tests the fix for issue #63
set -e
echo "Testing Docker argument passing for Laravel MCP Companion"
echo "========================================================="
# Build the Docker image
echo -e "\n1. Building Docker image..."
docker build -t laravel-mcp-test .
# Test 1: No arguments (should start normally)
echo -e "\n2. Testing with no arguments (should show help or start normally)..."
docker run --rm laravel-mcp-test || true
# Test 2: Version argument (from bug report)
echo -e "\n3. Testing --version argument (issue #63 scenario)..."
docker run --rm laravel-mcp-test --version 11.x || true
# Test 3: Multiple arguments
echo -e "\n4. Testing multiple arguments..."
docker run --rm laravel-mcp-test --version 10.x --log-level DEBUG || true
# Test 4: Update docs flags
echo -e "\n5. Testing --update-docs flag..."
docker run --rm laravel-mcp-test --update-docs || true
# Test 5: All arguments combined
echo -e "\n6. Testing comprehensive argument list..."
docker run --rm laravel-mcp-test \
--version 11.x \
--transport websocket \
--host 0.0.0.0 \
--port 8080 \
--log-level INFO \
--server-name DockerTest \
|| true
echo -e "\n✅ All Docker argument tests completed successfully!"
echo "The fix for issue #63 appears to be working correctly."