We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3de89 commit 2810452Copy full SHA for 2810452
1 file changed
TablePro/Core/MCP/MCPRouter.swift
@@ -983,6 +983,9 @@ extension MCPRouter {
983
}
984
985
func handleIntegrationsExchange(_ request: HTTPRequest) async -> RouteResult {
986
+ if request.method == .options {
987
+ return .noContent
988
+ }
989
guard request.method == .post else {
990
return .httpError(status: 405, message: "Method not allowed")
991
0 commit comments