Skip to main content
Glama

Keynote-MCP

by betancur
mcp_server.py731 B
#!/usr/bin/env python3 """ Keynote-MCP Server - Clean version for MCP clients """ import sys import os import asyncio from pathlib import Path # Add project root to Python path project_root = Path(__file__).parent sys.path.insert(0, str(project_root)) # Load environment variables quietly try: from dotenv import load_dotenv env_path = project_root / '.env' if env_path.exists(): load_dotenv(env_path) except ImportError: pass # Import and run the server from src.server import main if __name__ == "__main__": try: asyncio.run(main()) except KeyboardInterrupt: sys.exit(0) except Exception as e: sys.stderr.write(f"Server startup failed: {e}\n") 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/betancur/keynote-mcp'

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