Spaces:
Running
Running
Jeremiah Lowin commited on
Commit ·
016486c
1
Parent(s): c36510a
Fix broken links
Browse files- docs/clients/transports.mdx +1 -1
- docs/servers/context.mdx +1 -1
docs/clients/transports.mdx
CHANGED
|
@@ -7,7 +7,7 @@ icon: link
|
|
| 7 |
|
| 8 |
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.
|
| 9 |
|
| 10 |
-
While the `Client` often infers the correct transport automatically (see [Client Overview](/clients/
|
| 11 |
|
| 12 |
|
| 13 |
## Stdio Transports
|
|
|
|
| 7 |
|
| 8 |
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.
|
| 9 |
|
| 10 |
+
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.
|
| 11 |
|
| 12 |
|
| 13 |
## Stdio Transports
|
docs/servers/context.mdx
CHANGED
|
@@ -230,7 +230,7 @@ async def generate_example(concept: str, ctx: Context) -> str:
|
|
| 230 |
return f"```python\n{code_example}\n```"
|
| 231 |
```
|
| 232 |
|
| 233 |
-
See [Client Sampling](/clients/
|
| 234 |
|
| 235 |
### Request Information
|
| 236 |
|
|
|
|
| 230 |
return f"```python\n{code_example}\n```"
|
| 231 |
```
|
| 232 |
|
| 233 |
+
See [Client Sampling](/clients/client#llm-sampling) for more details on how clients handle these requests.
|
| 234 |
|
| 235 |
### Request Information
|
| 236 |
|