Skip to main content
Glama

Norman Finance MCP Server

Official
conftest.py659 B
"""Pytest configuration for Norman Finance MCP server tests.""" import os import pytest from unittest.mock import patch @pytest.fixture(autouse=True) def mock_env_vars(): """Automatically mock environment variables for all tests.""" with patch.dict(os.environ, { "NORMAN_EMAIL": "test@example.com", "NORMAN_PASSWORD": "test-password", "NORMAN_ENVIRONMENT": "production", "NORMAN_API_TIMEOUT": "200" }): yield @pytest.fixture(autouse=True) def disable_actual_api_calls(): """Prevent any actual HTTP requests during tests.""" with patch("requests.request"), patch("requests.post"): yield

Latest Blog Posts

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/norman-finance/norman-mcp-server'

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