We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eagurin/myaiserv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.sh•431 B
#!/usr/bin/env bash
set -e
# Скрипт для запуска тестов
# Можно передать аргументы для pytest
TESTS_DIR="./tests"
echo "Запуск тестов..."
if [ ! -d "${TESTS_DIR}" ]; then
echo "Ошибка: директория tests не существует"
exit 1
fi
poetry run pytest \
-v \
--tb=short \
"$@"
echo "Тесты выполнены успешно"