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-image-recognition'
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"=="anthropic" (
cls
python -m pytest tests/test_anthropic.py -v
) ELSE IF "%2"=="openai" (
cls
python -m pytest tests/test_openai.py -v
) ELSE (
cls
python -m pytest tests/ -v
)
) ELSE IF "%1"=="server" (
cls
cd ./build/lib
set PYTHONIOENCODING=utf-8
python -m image_recognition_server.server
cd ../..
) ELSE IF "%1"=="debug" (
cls
cd ./build/lib
npx @modelcontextprotocol/inspector python -m image_recognition_server.server
cd ../..
) ELSE IF "%1"=="full" (
build.bat
run.bat debug
) ELSE (
echo Invalid command.
echo Usage:
echo run.bat test [server ^| anthropic ^| openai]
echo run.bat server
echo run.bat debug
echo run.bat full
)