You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
URL mode elicitation directs the user to an external URL for out-of-band interactions that must not pass through the MCP client (e.g., entering sensitive data, OAuth flows). The tool call blocks while waiting for the user to complete the interaction:
1012
+
URL mode elicitation directs the user to an external URL for out-of-band interactions — for example, entering sensitive data that should not pass through the LLM, or filling out a complex form like a shipping address. The tool call blocks while waiting for the user to complete the interaction:
1013
1013
1014
1014
```python
1015
1015
import asyncio
@@ -1020,37 +1020,37 @@ import anyio
1020
1020
from mcp.server.fastmcp import Context, FastMCP
1021
1021
from mcp.server.session import ServerSession
1022
1022
1023
-
mcp = FastMCP("Weather Example")
1023
+
mcp = FastMCP("Shipping Example")
1024
1024
1025
1025
# Simulates a database that the web form writes to on submit
0 commit comments