diff --git a/docs/assets/demo-inspector.png b/docs/assets/demo-inspector.png
deleted file mode 100644
index 5d7715387..000000000
Binary files a/docs/assets/demo-inspector.png and /dev/null differ
diff --git a/docs/assets/favicon.ico b/docs/assets/favicon.ico
deleted file mode 100644
index 8d887b636..000000000
Binary files a/docs/assets/favicon.ico and /dev/null differ
diff --git a/docs/assets/favicon.svg b/docs/assets/favicon.svg
new file mode 100644
index 000000000..b9a0a6c9a
--- /dev/null
+++ b/docs/assets/favicon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/docs/assets/logo.png b/docs/assets/logo.png
deleted file mode 100644
index 20285edac..000000000
Binary files a/docs/assets/logo.png and /dev/null differ
diff --git a/docs/changelog.mdx b/docs/changelog.mdx
index f7ac4bdd1..9c45e2ec5 100644
--- a/docs/changelog.mdx
+++ b/docs/changelog.mdx
@@ -212,7 +212,7 @@ FastMCP 2.8.0 introduces powerful new ways to customize and control your MCP ser
The highlight of this release is first-class [**Tool Transformation**](/patterns/tool-transformation), a new feature that lets you create enhanced variations of existing tools. You can now easily rename arguments, hide parameters, modify descriptions, and even wrap tools with custom validation or post-processing logic—all without rewriting the original code. This makes it easier than ever to adapt generic tools for specific LLM use cases or to simplify complex APIs. Huge thanks to [@strawgate](https://github.com/strawgate) for partnering on this, starting with [#591](https://github.com/jlowin/fastmcp/discussions/591) and [#599](https://github.com/jlowin/fastmcp/pull/599) and continuing offline.
### Component Control
-This release also gives you more granular control over which components are exposed to clients. With new [**tag-based filtering**](/servers/fastmcp#tag-based-filtering), you can selectively enable or disable tools, resources, and prompts based on tags, perfect for managing different environments or user permissions. Complementing this, every component now supports being [programmatically enabled or disabled](/servers/tools#disabling-tools), offering dynamic control over your server's capabilities.
+This release also gives you more granular control over which components are exposed to clients. With new [**tag-based filtering**](/servers/server#tag-based-filtering), you can selectively enable or disable tools, resources, and prompts based on tags, perfect for managing different environments or user permissions. Complementing this, every component now supports being [programmatically enabled or disabled](/servers/tools#disabling-tools), offering dynamic control over your server's capabilities.
### Tools-by-Default
Finally, to improve compatibility with a wider range of LLM clients, this release changes the default behavior for OpenAPI integration: all API endpoints are now converted to `Tools` by default. This is a **breaking change** but pragmatically necessitated by the fact that the majority of MCP clients available today are, sadly, only compatible with MCP tools. Therefore, this change significantly simplifies the out-of-the-box experience and ensures your entire API is immediately accessible to any tool-using agent.
diff --git a/docs/community/showcase.mdx b/docs/community/showcase.mdx
index 7e0295c2e..c0a9e3545 100644
--- a/docs/community/showcase.mdx
+++ b/docs/community/showcase.mdx
@@ -56,4 +56,4 @@ We review submissions regularly and feature projects that provide value to the F
## Further Reading
-- [Contrib Modules](/integrations/contrib) - Community-contributed modules that are distributed with FastMCP itself
\ No newline at end of file
+- [Contrib Modules](/patterns/contrib) - Community-contributed modules that are distributed with FastMCP itself
\ No newline at end of file
diff --git a/docs/docs.json b/docs/docs.json
index fc4ea0728..992730197 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -21,8 +21,8 @@
},
"description": "The fast, Pythonic way to build MCP servers and clients.",
"favicon": {
- "dark": "/assets/favicon.ico",
- "light": "/assets/favicon.ico"
+ "dark": "/assets/favicon.svg",
+ "light": "/assets/favicon.svg"
},
"footer": {
"socials": {
diff --git a/docs/getting-started/quickstart.mdx b/docs/getting-started/quickstart.mdx
index b3569d486..bd32ed70b 100644
--- a/docs/getting-started/quickstart.mdx
+++ b/docs/getting-started/quickstart.mdx
@@ -125,5 +125,5 @@ fastmcp run my_server.py:mcp
Note that FastMCP *does not* require the `__main__` block in the server file, and will ignore it if it is present. Instead, it looks for the server object provided in the CLI command (here, `mcp`). If no server object is provided, `fastmcp run` will automatically search for servers called "mcp", "app", or "server" in the file.
-We pointed our client at the server file, which is recognized as a Python MCP server and executed with `python my_server.py` by default. This executes the `__main__` block of the server file. There are other ways to run the server, which are described in the [server configuration](/servers/fastmcp#running-the-server) guide.
+We pointed our client at the server file, which is recognized as a Python MCP server and executed with `python my_server.py` by default. This executes the `__main__` block of the server file. There are other ways to run the server, which are described in the [server configuration](/servers/server#running-the-server) guide.