- Updated template path resolution to use fileURLToPath with import.meta.url for reliable absolute path detection regardless of call location.
- Refactored path resolution in multiple files (docs.ts, create-tool-template.ts, create-resource-template.ts, create-prompt-template.ts, generate-boilerplate.ts) to use fileURLToPath instead of process.cwd() for consistent behavior.
- Modified output_dir to be a required parameter in all template creation functions, ensuring users must provide an absolute path. - Added package.json.hbs template with modern ESM dependencies and scripts
- Added tsconfig.json.hbs template with ES2022 support and module resolution
- Created gitignore.hbs template with Node.js-specific exclusions
- Created index.ts.hbs template with server startup logic
- Created server.ts.hbs template with Express config and middleware
- Created example-tool.ts.hbs template with Zod validation
- Created example-resource.ts.hbs template with CRUD endpoints
- Created example-prompt.ts.hbs template with Handlebars interpolation
- Created README.md.hbs template with comprehensive documentation