We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tianfn/mcp-translation-text'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•261 B
import pathlib
import sys
PROJECT_ROOT = pathlib.Path(__file__).resolve().parent
SRC_PATH = PROJECT_ROOT / "src"
if str(SRC_PATH) not in sys.path:
sys.path.insert(0, str(SRC_PATH))
from translation_server import main
if __name__ == "__main__":
main()