#!/usr/bin/env python3
"""
POEditor MCP Server Entry Point
This module serves as the main entry point for the POEditor MCP server.
It initializes the server and starts listening for MCP requests.
"""
import asyncio
import sys
if __name__ == "__main__":
try:
from .server import main
asyncio.run(main())
except KeyboardInterrupt:
print("\nShutting down POEditor MCP server...")
sys.exit(0)
except Exception as e:
print(f"Error starting POEditor MCP server: {e}")
sys.exit(1)
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/r-pedraza/poeditor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server