Files
ghost-mcp/src/main.py
Fanyang Meng 2a6e83eca7 🎉 Initial commit
Implemented the first version of Ghost MCP
2025-02-11 01:25:59 -05:00

13 lines
265 B
Python

#!/usr/bin/env python3
"""Main entry point for Ghost MCP server."""
from ghost_mcp import create_server
def main():
"""Initialize and run the Ghost MCP server."""
mcp = create_server()
mcp.run(transport='stdio')
if __name__ == "__main__":
main()