We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/senseisven/mcp_macos'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_suite.py•479 B
#!/usr/bin/env python3
"""
Test suite for MCP Remote macOS Use.
This module collects and runs all tests in the project.
"""
import os
import sys
import unittest
import pytest
# Add the source directory to the path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
if __name__ == "__main__":
# Run pytest tests
print("=== Running pytest tests ===")
status = pytest.main(["-v"])
# Return the exit code
sys.exit(status)