We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AkkioTim/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•456 B
#!/usr/bin/env python
"""
Convenience script to run the MCP server.
Usage:
python scripts/run_server.py
This script ensures the PYTHONPATH is set correctly.
"""
import os
import sys
# Add src to path
script_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(script_dir)
src_path = os.path.join(project_root, "src")
sys.path.insert(0, src_path)
from mcp_server.server import main
if __name__ == "__main__":
main()