Skip to main content
Glama

DaVinci MCP Professional

by Positronikal
mcp_server.py731 B
#!/usr/bin/env python3 """ Pure MCP server entry point for DaVinci Resolve. This version outputs no console messages - only JSON-RPC. """ import asyncio import sys import os from pathlib import Path # Add the src directory to Python path current_dir = Path(__file__).parent src_dir = current_dir / "src" sys.path.insert(0, str(src_dir)) from davinci_mcp.server import DaVinciMCPServer async def main(): """Run the MCP server with no console output.""" server = DaVinciMCPServer() await server.run() if __name__ == "__main__": # Suppress all output except JSON-RPC try: asyncio.run(main()) except Exception: # Exit silently on any error to avoid polluting JSON-RPC 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/Positronikal/davinci-mcp-professional'

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