Skip to content

Commit 2c955bb

Browse files
committed
Update authorization.mdx
1 parent 2f595ad commit 2c955bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/docs/tutorials/security/authorization.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,8 @@ Lastly, we need to register a new client that we can use with the **MCP server i
228228
1. Enable **Client authentication** and click **Next**.
229229
1. Click **Save**.
230230

231+
Worth noting that token introspection is just _one of_ the available approaches to validate tokens. This can also be done with the help of standalone libraries, specific to each language and platform.
232+
231233
When you open the client details, go to **Credentials** and take note of the **Client Secret**.
232234

233235
<Frame>
@@ -597,7 +599,7 @@ app.post("/", authMiddleware, mcpPostHandler);
597599
app.get("/", authMiddleware, handleSessionRequest);
598600
app.delete("/", authMiddleware, handleSessionRequest);
599601

600-
app.listen(CONFIG.port, () => {
602+
app.listen(CONFIG.port, CONFIG.host, () => {
601603
console.log(`🚀 MCP Server running on ${mcpServerUrl.origin}`);
602604
console.log(`📡 MCP endpoint available at ${mcpServerUrl.origin}`);
603605
console.log(

0 commit comments

Comments
 (0)