fix(docs): add missing import to code example

The _call_tool example used -> Any type annotation without showing
the required `from typing import Any` import.
This commit is contained in:
Furkan Köykıran
2026-03-22 13:27:35 +03:00
parent c341c00100
commit 2e99c4ff69
+1
View File
@@ -439,6 +439,7 @@ Example: DOMShell provides browser automation via MCP tools.
**Backend wrapper** (`utils/<service>_backend.py`):
```python
import asyncio
from typing import Any
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client