We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/husniadil/ultrathink'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_cli.py•422 B
"""Tests for CLI entry point"""
from unittest.mock import patch
from ultrathink.__main__ import main
class TestCLIEntryPoint:
"""Test suite for CLI entry point"""
def test_main_function_calls_mcp_run(self) -> None:
"""Should call mcp.run() when main() is invoked"""
with patch("ultrathink.interface.mcp_server.mcp.run") as mock_run:
main()
mock_run.assert_called_once()