Skip to content

v0.0.3

Choose a tag to compare

@fuongz fuongz released this 02 Apr 03:52
· 42 commits to main since this release
d4ff437

Bug Fixes

  • Fixed Cloudflare Workers bundling failure - The main entry point (dist/index.js) was
    re-exporting Node.js runtime symbols (FileTokenStore, SqliteSessionStore), which caused
    Wrangler to choke on __require/import.meta.require from the shared bun chunk.

    The fix removes the Node.js runtime re-export from the main entry. Node-specific stores
    are only available via the subpath export:

    import { FileTokenStore, SqliteSessionStore } from "@phake/mcp/runtime/node";

Breaking Changes

  • FileTokenStore and SqliteSessionStore are no longer exported from the package root (@phake/mcp). Import them from @phake/mcp/runtime/node instead.