docs: fix 5 broken internal links (auth & providers pages) (#4344)

Co-authored-by: Michael Tierney <MichaelTierney315@outlook.com>
This commit is contained in:
Michael@WCD 2026-06-24 12:02:20 -04:00 committed by GitHub
commit 0d5667bed2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -584,7 +584,7 @@ if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)
```
For more details on OAuth authentication, see the [Authentication guide](/servers/auth).
For more details on OAuth authentication, see the [Authentication guide](/servers/auth/authentication).
## Production Deployment

View file

@ -89,7 +89,7 @@ Okay, I rolled 3 dice and got a 5, 4, and 1.
### Remote & Authenticated Servers
In the above example, we connected to our local server using `stdio` transport. Because we're using a FastMCP client, you can also connect to any local or remote MCP server, using any [transport](/clients/transports) or [auth](/clients/auth) method supported by FastMCP, simply by changing the client configuration.
In the above example, we connected to our local server using `stdio` transport. Because we're using a FastMCP client, you can also connect to any local or remote MCP server, using any [transport](/clients/transports) or [auth](/clients/auth/oauth) method supported by FastMCP, simply by changing the client configuration.
For example, to connect to a remote, authenticated server, you can use the following client:

View file

@ -149,7 +149,7 @@ These parameters control what your server is built from — its components, midd
</ParamField>
<ParamField body="providers" type="list[Provider] | None">
[Providers](/servers/providers) that supply tools, resources, and prompts dynamically. Providers are queried at request time, so they can serve components from databases, APIs, or other external sources
[Providers](/servers/providers/overview) that supply tools, resources, and prompts dynamically. Providers are queried at request time, so they can serve components from databases, APIs, or other external sources
</ParamField>
<ParamField body="transforms" type="list[Transform] | None">

View file

@ -574,7 +574,7 @@ if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)
```
For more details on OAuth authentication, see the [Authentication guide](/v2/servers/auth).
For more details on OAuth authentication, see the [Authentication guide](/v2/servers/auth/authentication).
## Production Deployment

View file

@ -89,7 +89,7 @@ Okay, I rolled 3 dice and got a 5, 4, and 1.
### Remote & Authenticated Servers
In the above example, we connected to our local server using `stdio` transport. Because we're using a FastMCP client, you can also connect to any local or remote MCP server, using any [transport](/v2/clients/transports) or [auth](/v2/clients/auth) method supported by FastMCP, simply by changing the client configuration.
In the above example, we connected to our local server using `stdio` transport. Because we're using a FastMCP client, you can also connect to any local or remote MCP server, using any [transport](/v2/clients/transports) or [auth](/v2/clients/auth/oauth) method supported by FastMCP, simply by changing the client configuration.
For example, to connect to a remote, authenticated server, you can use the following client: