Merge branch 'main' into 2-14-deprecations

This commit is contained in:
Jeremiah Lowin 2025-11-15 11:06:18 -05:00 committed by GitHub
commit 968027bd8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 2863 additions and 51 deletions

View file

@ -18,7 +18,7 @@ consent pages, and other user-facing interfaces.
### `create_page` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/utilities/ui.py#L453" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
```python
create_page(content: str, title: str = 'FastMCP', additional_styles: str = '', csp_policy: str = "default-src 'none'; style-src 'unsafe-inline'; img-src https:; base-uri 'none'") -> str
create_page(content: str, title: str = 'FastMCP', additional_styles: str = '', csp_policy: str = "default-src 'none'; style-src 'unsafe-inline'; img-src https: data:; base-uri 'none'") -> str
```