We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mario-andreschak/mcp-sap-gui'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
@echo off
IF "%1"=="test" (
IF "%2"=="server" (
cls
python -m pytest tests/test_server.py -v
) ELSE IF "%2"=="controller" (
cls
python -m pytest tests/test_controller.py -v
) ELSE (
cls
python -m pytest tests/ -v
)
) ELSE IF "%1"=="server" (
cls
python -m src.sap_gui_server.server
) ELSE IF "%1"=="debug" (
cls
npx @modelcontextprotocol/inspector python -m sap_gui_server.server
) ELSE IF "%1"=="full" (
build.bat
run.bat debug
) ELSE (
echo Invalid command.
echo Usage:
echo run.bat test [server ^| controller]
echo run.bat server
echo run.bat debug
)