We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5479178 + 577fadd commit 38d8f01Copy full SHA for 38d8f01
1 file changed
mcp-server/src/http-server-oauth.ts
@@ -112,8 +112,9 @@ app.use(
112
})
113
);
114
115
-// JSON body parsing (after auth router, which has its own parsing)
+// Body parsing (after auth router, which has its own parsing)
116
app.use(express.json());
117
+app.use(express.urlencoded({ extended: true }));
118
119
// Bearer auth middleware for /mcp endpoint
120
const bearerAuth = requireBearerAuth({
0 commit comments