We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rorymcmahon/ssh-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_basic.py•376 B
"""Basic tests to ensure package imports work."""
def test_package_imports():
"""Test that the main package can be imported."""
try:
import ssh_mcp_server
assert True
except ImportError:
assert False, "Failed to import ssh_mcp_server package"
def test_basic_functionality():
"""Basic test that always passes."""
assert 1 + 1 == 2