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.py•400 B
#!/usr/bin/env python
"""Entry point for the Simplenote MCP server."""
import os
import sys
from pathlib import Path
# Enable debug logging
os.environ["LOG_LEVEL"] = "DEBUG"
# Add the project directory to the Python path
PROJECT_ROOT = Path(__file__).parent
sys.path.insert(0, str(PROJECT_ROOT))
from simplenote_mcp.server import run_main # noqa: E402
if __name__ == "__main__":
run_main()