mirror of
https://github.com/jlengrand/ghost-mcp.git
synced 2026-03-10 08:21:19 +00:00
13 lines
265 B
Python
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()
|