We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kiseki-technologies/kiseki-labs-readwise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Standard Library
import os
# Third Party
import pytest
from dotenv import load_dotenv
@pytest.fixture(scope="session", autouse=True)
def load_env():
"""Load environment variables from .env file before tests run."""
load_dotenv()
@pytest.fixture(scope="session")
def readwise_api_key():
"""Fixture to provide the Readwise API key, skipping tests if not set."""
api_key = os.getenv("READWISE_API_KEY")
if not api_key:
pytest.skip("READWISE_API_KEY environment variable not set, skipping integration test.")
return api_key