From 11277f6e2141ddc0de528e1d85224315ad092cbe Mon Sep 17 00:00:00 2001 From: Jon Zeolla Date: Mon, 27 Oct 2025 07:35:10 -0400 Subject: [PATCH] fix(docs): correct the key_value repo link --- docs/clients/auth/oauth.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/clients/auth/oauth.mdx b/docs/clients/auth/oauth.mdx index 090afbd30..8656ff679 100644 --- a/docs/clients/auth/oauth.mdx +++ b/docs/clients/auth/oauth.mdx @@ -83,9 +83,9 @@ Upon approval, the OAuth server redirects the user's browser to the local callba The obtained tokens are saved to the configured `token_storage` backend for future use, eliminating the need for repeated browser interactions. - + -The access token is automatically included in the `Authorization` header for requests to the MCP server. +The access token is automatically included in the `Authorization` header for requests to the MCP server. If the access token expires, the client will automatically use the refresh token to get a new access token. @@ -125,4 +125,4 @@ async with Client("https://fastmcp.cloud/mcp", auth=oauth) as client: await client.ping() ``` -You can use any `AsyncKeyValue`-compatible backend from the [key-value library](https://github.com/jlowin/key-value) including Redis, DynamoDB, and more. Wrap your storage in `FernetEncryptionWrapper` for encryption. +You can use any `AsyncKeyValue`-compatible backend from the [key-value library](https://github.com/strawgate/py-key-value) including Redis, DynamoDB, and more. Wrap your storage in `FernetEncryptionWrapper` for encryption.