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
__main__.py•594 B
#!/usr/bin/env python3
"""Main entry point for running simplenote-mcp-server as a module.
This allows the package to be executed with:
python -m simplenote_mcp
"""
import sys
from .server.server import run_main
if __name__ == "__main__":
# Handle command line arguments
if len(sys.argv) > 1 and sys.argv[1] in ("--help", "-h"):
print("Simplenote MCP Server")
print("Usage: python -m simplenote_mcp [options]")
print("\nFor detailed help, run the server with --help after starting.")
sys.exit(0)
# Run the main server function
run_main()