<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\McpController;
// MCP Server endpoints - no CSRF protection needed for API routes
Route::match(['GET', 'POST'], '/mcp', [McpController::class, 'handle']);
Route::get('/health', [McpController::class, 'health']);