We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docdyhr/simplenote-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# simplenote_mcp/server/__init__.py
"""Simplenote MCP Server implementation."""
from .config import Config, get_config
from .logging import get_logger, log_debug
from .server import get_simplenote_client, run_main
__all__ = [
"Config",
"get_config",
"get_simplenote_client",
"log_debug",
"get_logger",
"run_main",
]