You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@mcp-apps-kit/create-app

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mcp-apps-kit/create-app - npm Package Compare versions

Comparing version
0.2.3
to
0.2.4
+1
-1
package.json
{
"name": "@mcp-apps-kit/create-app",
"version": "0.2.3",
"version": "0.2.4",
"description": "CLI tool for scaffolding MCP applications",

@@ -5,0 +5,0 @@ "type": "module",

+51
-18

@@ -5,10 +5,36 @@ # @mcp-apps-kit/create-app

CLI scaffolder for starting a new MCP app project using MCP Apps Kit.
CLI tool for scaffolding MCP applications.
It generates a ready-to-run project with server + UI code, so you can focus on tool definitions and your widget UI.
Scaffolds a ready-to-run project with server and UI code so you can focus on tool definitions and widget UI.
## Use
## Table of Contents
You can run it without installing:
- [Background](#background)
- [Features](#features)
- [Compatibility](#compatibility)
- [Install](#install)
- [Usage](#usage)
- [Examples](#examples)
- [API](#api)
- [Contributing](#contributing)
- [License](#license)
## Background
Starting a new MCP app requires wiring server tooling, UI code, and build scripts. This CLI creates a minimal, working project so you can iterate quickly.
## Features
- React and vanilla templates
- Optional Vercel deployment configuration
- Interactive prompts or non-interactive flags
## Compatibility
- Node.js: `>= 20`
## Install
Run without installing:
```bash

@@ -25,3 +51,3 @@ npx @mcp-apps-kit/create-app@latest

## Options
## Usage

@@ -42,25 +68,32 @@ ```bash

npx @mcp-apps-kit/create-app@latest my-app --skip-git
# Add Vercel configuration
npx @mcp-apps-kit/create-app@latest my-app --vercel
```
Templates:
## Examples
- `react`: React + TypeScript UI with hooks
- `vanilla`: Vanilla TypeScript UI
- `../../examples/minimal`
- [kanban-mcp-example](https://github.com/AndurilCode/kanban-mcp-example)
## After scaffolding
## API
```bash
cd my-app
pnpm dev
```
CLI entry point:
## Documentation & examples
- `create-mcp-apps-kit [name]`
- Project overview: ../../README.md
- Example projects (if you prefer copying instead of scaffolding):
- ../../examples/minimal
- [kanban-mcp-example](https://github.com/AndurilCode/kanban-mcp-example) (comprehensive demo in separate repo)
Options:
- `-t, --template <react|vanilla>`
- `-d, --directory <path>`
- `--skip-install`
- `--skip-git`
- `--vercel`
## Contributing
See `../../CONTRIBUTING.md` for development setup and guidelines. Issues and pull requests are welcome.
## License
MIT