You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node: instrument() returns { server, flush } instead of the
McpServer instance. Callers doing const server = instrument(new McpServer(...), opts) must switch to const { server } = instrument(...); callers that discard the return value (the pattern
used everywhere in this repo's README and examples) are unaffected.
Features
node: return a flush handle from instrument() for request-scoped runtimes (9c6c508), closes #8