We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dadapera/mcp-sop-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•581 B
#!/usr/bin/env python3
"""
Main entry point for the SOP MCP Server.
Run this script to start the server.
"""
import sys
import asyncio
import logging
from pathlib import Path
# Add src to path so we can import our modules
sys.path.insert(0, str(Path(__file__).parent / "src"))
from mcp_sop_server import mcp
from mcp_sop_server.mcp_server import initialize_server
logger = logging.getLogger(__name__)
if __name__ == "__main__":
logger.info("🚀 Starting SOP MCP Server...")
logger.info("📚 SOP Server ready to accept requests")
mcp.run(transport='stdio')