create-manifest
v2.0.2
Published
Create a new Manifest project
Readme
create-manifest
Create a new Manifest MCP server project with a single command.
Usage
npx create-manifest my-appThis will:
- Create a new directory
my-app - Copy the starter template
- Install dependencies
- Start the development server
What's Included
The starter template includes:
- MCP server setup with Express
- TypeScript configuration
- Hot reload with Nodemon
- Vite for React widget development with HMR
- Prettier for code formatting
Requirements
- Node.js 22+
- pnpm
- ngrok (for ChatGPT integration)
After Creation
Your project will be running at http://localhost:3000.
The MCP endpoint is available at http://localhost:3000/mcp.
To connect to ChatGPT, expose your server with ngrok:
ngrok http 3000Then use the ngrok URL with /mcp path in ChatGPT's connector settings.
To restart the dev server later:
cd my-app
pnpm run devAvailable Scripts
Inside the created project, you can run:
pnpm dev- Start development server with hot reloadpnpm build- Build for productionpnpm start- Run production buildpnpm lint- Check code formattingpnpm format- Format code with Prettier
Learn More
License
MIT
