From 8a1820f1c38401fa02c8996a7a30e864561b80d3 Mon Sep 17 00:00:00 2001
From: "marvin-context-protocol[bot]"
<225465937+marvin-context-protocol[bot]@users.noreply.github.com>
Date: Fri, 7 Aug 2026 15:49:36 -0500
Subject: [PATCH] chore: Update SDK documentation (#4782)
Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
---
docs/python-sdk/fastmcp-server-event_store.mdx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/python-sdk/fastmcp-server-event_store.mdx b/docs/python-sdk/fastmcp-server-event_store.mdx
index 08d266ea5..39a2ba77b 100644
--- a/docs/python-sdk/fastmcp-server-event_store.mdx
+++ b/docs/python-sdk/fastmcp-server-event_store.mdx
@@ -16,19 +16,19 @@ AsyncKeyValue protocol, allowing users to configure any compatible backend
## Classes
-### `EventEntry`
+### `EventEntry`
Stored event entry.
-### `StreamEventList`
+### `StreamEventList`
List of event IDs for a stream.
-### `EventStore`
+### `EventStore`
EventStore implementation backed by AsyncKeyValue.
@@ -45,7 +45,7 @@ following the same pattern as ResponseCachingMiddleware and OAuthProxy.
**Methods:**
-#### `store_event`
+#### `store_event`
```python
store_event(self, stream_id: StreamId, message: JSONRPCMessage | None) -> EventId
@@ -61,7 +61,7 @@ Store an event and return its ID.
- The generated event ID for the stored event
-#### `replay_events_after`
+#### `replay_events_after`
```python
replay_events_after(self, last_event_id: EventId, send_callback: EventCallback) -> StreamId | None