Skip to content

fix: refresh props for existing Durable Objects via serveSSE POST endpoint #337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

asghar-mir
Copy link

Fixes #323

Problem

When using a MCPAgent locally, the POST /message handler fetches the Durable Object using idFromName("sse:${sessionId}") but does not re-initialize or update the props context via _init() or similar.

This leads to stale or missing values inside this.props. For instance, in the Auth0 integration example, this.props.tokenSet.accessToken from tokenExchangeCallback never updates after the first token exchange. Even though the refresh token flow is correctly triggered, the updated access token never reaches the Durable Object instance, breaking authenticated API requests.

Solution

Added a call to await doStub._init(ctx.props) before forwarding the request to the Durable Object in the POST /message handler. This ensures that the Durable Object instance has the latest props context, including updated access tokens from OAuth refresh flows.

Testing

  • All existing tests pass
  • The fix follows the same pattern already used in the GET handler for initial SSE connections
  • No breaking changes to the API

Copy link

changeset-bot bot commented Jun 26, 2025

⚠️ No Changeset found

Latest commit: d4d5f4b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow refreshing props for existing Durable Objects via serveSSE POST endpoint
1 participant