FrontMCP 0.2.0 focuses on a zero-friction developer experience: a project generator, one-command Inspector,
smarter
config checks, and ergonomic tool schemas—plus a dev-only no-auth mode for quick local testing.
- 🧪 Dev-only no-auth: run without auth in development mode only.
Example:
frontmcp dev —no-auth
- 🚀 Project generator:
npx frontmcp create <name> scaffolds tsconfig, package.json
scripts, and starter files.
- 🔧 Init for existing repos:
npx frontmcp init adds scripts and fixes tsconfig automatically.
- 🔭 Inspector, zero setup:
frontmcp
inspector launches @modelcontextprotocol/inspector.
- 🩺 Doctor: validates Node ≥ 22, npm ≥ 10, entry detection, and configuration.
- ✨ Tool schema ergonomics: pass Zod fields directly
(
inputSchema: { … } / outputSchema: { … }).
- ⚡ Async type checks in dev: background type-checking while watching files.
- 📦 Entry detection & builds: uses
package.json.main or falls back to src/main.ts;
builds to ./dist (override with —out-dir).
- 📡 Transport health: unified SSE intent detection incl. legacy GET
event-stream and
session-aware SSE.
- 📝 Better logging: consistent
verbose/info/warn/error across flows.
The —no-auth option is restricted to development. Do not use in
production.