v0.0.3
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.requirefrom 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
FileTokenStoreandSqliteSessionStoreare no longer exported from the package root (@phake/mcp). Import them from@phake/mcp/runtime/nodeinstead.