Skip to main content
Glama

Apple Health MCP Server

start.pyβ€’574 B
import subprocess import sys from pathlib import Path def get_project_dir() -> Path: return Path(__file__).parent.resolve() def main() -> None: project_dir = get_project_dir() print("Starting the FastMCP application...", file=sys.stderr) cmd = [ "uv", "run", "--directory", str(project_dir), "fastmcp", "run", "app/main.py", ] print(f"Executing: {' '.join(cmd)}", file=sys.stderr) result = subprocess.run(cmd) sys.exit(result.returncode) if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/the-momentum/apple-health-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server