We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/matbanik/Pomera-AI-Commander'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-linux-simple.bat•673 B
@echo off
echo Testing Linux executable in Docker container...
echo.
REM Check if the Linux executable exists
if not exist "dist-docker\pomera-linux" (
echo ERROR: Linux executable not found!
echo Please build it first using: build-docker.bat
pause
exit /b 1
)
echo Starting Ubuntu container with your Linux executable...
echo.
echo Commands you can try inside the container:
echo ./pomera-linux --help
echo ./pomera-linux --version
echo ls -la pomera-linux
echo file pomera-linux
echo.
echo Type 'exit' to return to Windows
echo.
docker run -it --rm -v "%cd%\dist-docker:/app" -w /app ubuntu:22.04 /bin/bash
echo.
echo Returned to Windows
pause