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
REM Build script for MCP Image Recognition Server
REM Install dependencies
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .
REM Run code formatting
black src/
isort src/
REM Run linting
ruff check src/
mypy src/
REM Build package
python setup.py build
REM Run code formatting
@REM black tests/
@REM isort tests/
REM Run linting
@REM ruff check tests/
@REM mypy tests/
REM Run tests
@REM pytest tests/ -v --cov=src