Update mcp_server_main.py

This commit is contained in:
saidsurucu
2025-07-09 19:58:07 +03:00
parent 3ccb52e719
commit b751e94847
+6 -1
View File
@@ -31,7 +31,12 @@ root_logger.addHandler(console_handler)
logger = logging.getLogger(__name__)
# --- Logging Configuration End ---
# Removed mcp_auth_factory import to eliminate OAuth tools from MCP protocol
# Create FastMCP app directly without authentication wrapper
from fastmcp import FastMCP
def create_app():
"""Create basic FastMCP app without authentication wrapper"""
return FastMCP("Yargı MCP Server")
# --- Module Imports ---
from yargitay_mcp_module.client import YargitayOfficialApiClient