Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mac-messages-mcp
Claim
by
carterlasalle
GitHub
Communication
OS Automation
Python
MIT License
3
Apple
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
.github
mac_messages_mcp
scripts
tests
.gitignore
LICENSE
main.py
pyproject.toml
README.md
uv.lock
VERSIONING.md
#!/usr/bin/env python3 """ Mac Messages MCP - Main entry point for the package """ from mac_messages_mcp.server import run_server def main(): """Entry point for the mac-messages-mcp package""" run_server() if __name__ == "__main__": main()