Skip to main content
Glama

MCP Server Neurolorap

by aindreyway
test_exceptions.py609 B
"""Tests for custom exceptions.""" import pytest from mcp_server_neurolorap.exceptions import CollectionError, TerminalError def test_collection_error() -> None: """Test CollectionError exception.""" with pytest.raises(CollectionError) as exc_info: raise CollectionError("Test collection error") assert str(exc_info.value) == "Test collection error" def test_terminal_error() -> None: """Test TerminalError exception.""" with pytest.raises(TerminalError) as exc_info: raise TerminalError("Test terminal error") assert str(exc_info.value) == "Test terminal error"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aindreyway/mcp-server-neurolora-p'

If you have feedback or need assistance with the MCP directory API, please join our Discord server