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.
2 parents 5ebf2f0 + 252dc10 commit 7bad14bCopy full SHA for 7bad14b
1 file changed
services/mcp_proxy.jac
@@ -1,10 +1,15 @@
1
-"""MCP Proxy – forwards JSON-RPC calls to any MCP server URL."""
+"""MCP Proxy – forwards JSON-RPC calls to any MCP server URL.
2
+
3
+Uses @restspec with custom path to avoid ALB blocking /function/* and /walker/* routes.
4
+"""
5
6
import urllib.request;
7
import urllib.parse;
8
import json;
9
import urllib.error;
10
+import from http { HTTPMethod }
11
12
+@restspec(method=HTTPMethod.POST, path="/mcp-proxy")
13
def:pub mcp_proxy(
14
url: str,
15
body: dict = {},
0 commit comments