We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sirmews/apple-notes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•467 B
from . import server
import asyncio
import argparse
def main():
parser = argparse.ArgumentParser(description="Apple Notes MCP Server")
parser.add_argument(
"--db-path",
default=None,
help="Path to Apple Notes database file. Will use OS default if not provided.",
)
args = parser.parse_args()
asyncio.run(server.main(args.db_path))
# Optionally expose other important items at package level
__all__ = ["main", "server"]