Skip to content

v0.2.0

Choose a tag to compare

@fuongz fuongz released this 06 Apr 05:31
· 28 commits to main since this release
be4212b

New Features

Scaffold CLI (create-phake-mcp)

Scaffold a new MCP server project with one command:

bun create @phake/mcp
# or with options
bun create @phake/mcp my-app --template cloudflare-workers --install

Available templates:

Template Description
cloudflare-workers Cloudflare Workers + Hono
cloudflare-workers-google Cloudflare Workers + Google OAuth
node-hono Node.js + Bun + Hono

CLI options:

Option Description
-t, --template Template name
-i, --install Auto install dependencies after scaffold
-p, --pm Package manager: npm, bun, yarn, pnpm

If no template is specified, an interactive prompt appears.

Tooling

  • Added Biome for linting and formatting (bun run lint, bun run lint:fix)
  • Added build:create script to compile the CLI binary

Tests

  • Unit tests for templates, after-create hook, and dependency installation hook

Full Changelog: v0.1.1...v0.2.0