From 28315a012713626b922bf25d5aa890397a4877cd Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Wed, 16 Apr 2025 10:57:18 -0400 Subject: [PATCH] Fix broken links --- docs/clients/transports.mdx | 2 +- docs/servers/context.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/clients/transports.mdx b/docs/clients/transports.mdx index b86ca3d65..a64fb0c25 100644 --- a/docs/clients/transports.mdx +++ b/docs/clients/transports.mdx @@ -7,7 +7,7 @@ icon: link The FastMCP `Client` relies on a `ClientTransport` object to handle the specifics of connecting to and communicating with an MCP server. FastMCP provides several built-in transport implementations for common connection methods. -While the `Client` often infers the correct transport automatically (see [Client Overview](/clients/overview#transport-inference)), you can also instantiate transports explicitly for more control. +While the `Client` often infers the correct transport automatically (see [Client Overview](/clients/client#transport-inference)), you can also instantiate transports explicitly for more control. ## Stdio Transports diff --git a/docs/servers/context.mdx b/docs/servers/context.mdx index 219dcd37a..e6ce5a56f 100644 --- a/docs/servers/context.mdx +++ b/docs/servers/context.mdx @@ -230,7 +230,7 @@ async def generate_example(concept: str, ctx: Context) -> str: return f"```python\n{code_example}\n```" ``` -See [Client Sampling](/clients/overview#llm-sampling) for more details on how clients handle these requests. +See [Client Sampling](/clients/client#llm-sampling) for more details on how clients handle these requests. ### Request Information