Skip to main content
Glama
run.py•587 B
#!/usr/bin/env python3 """ Simple startup script for IBKR MCP Server. """ import sys import os from pathlib import Path # Add project root to Python path project_root = Path(__file__).parent sys.path.insert(0, str(project_root)) # Import and run main from src.main import main import asyncio if __name__ == "__main__": print("šŸš€ Starting IBKR MCP Server...") print("=" * 50) try: asyncio.run(main()) except KeyboardInterrupt: print("\nšŸ‘‹ Server stopped by user") except Exception as e: print(f"āŒ Error: {e}") sys.exit(1)

Latest Blog Posts

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/happy-shine/ibkr_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server