leegilmorecode /
serverless-plop-cli
This article covers using the Plop framework to create a CLI which can auto generate our scaffolded serverless code; with code examples written in TypeScript and the AWS CDK.
Loading repository data…
romeoscript / repository
This CLI scaffolds a fully working MCP server in seconds — with TypeScript or JavaScript, built-in tools, resources, and dev commands. Think of it as CRA, but for MCP servers.
MCP CLI Toolkit scaffolds a fully working MCP server in seconds — with TypeScript or JavaScript, built-in tools, resources, and dev commands. Think of it as CRA, but for MCP servers.
npx mcp-scaffold create my-server
npm install -g mcp-scaffold
Then use:
mcp create my-server
npx mcp-scaffold create my-server
mcp create
mcp create my-server
# TypeScript template
mcp create my-server --template typescript
# JavaScript template
mcp create my-server --template javascript
# Skip prompts
mcp create my-server --yes
Every generated project includes:
Generated projects follow this structure:
TypeScript:
my-server/
├── src/
│ └── index.ts # Main server file (TypeScript)
├── package.json
├── tsconfig.json # TypeScript only
├── .gitignore
└── README.md
JavaScript:
my-server/
├── index.js # Main server file (JavaScript)
├── package.json
├── .gitignore
└── README.md
# Clone the repo
git clone https://github.com/romeoscript/MCP_CLI.git
cd MCP_CLI
# Install dependencies
pnpm install
# Build
pnpm run build
# Link for local testing
pnpm link
# Test the CLI
mcp create test-project
Contributions are welcome! Please feel free to submit a Pull Request.
MIT
Selected from shared topics, language and repository description—not editorial ratings.
leegilmorecode /
This article covers using the Plop framework to create a CLI which can auto generate our scaffolded serverless code; with code examples written in TypeScript and the AWS CDK.
Veri5ied /
This CLI scaffolds a fully working MCP server in seconds — with TypeScript or JavaScript, built-in tools, resources, and dev commands. Think of it as CRA, but for MCP servers.
alvachien /
This project is all about building a lib for Data Structures and algorithms. The Data Structure part, including List, Tree, Graph, and others. The Algorithm part, including sorting, searching and others. The whole project written with TypeScript and scaffold with Angular-CLI for demo-app.
codewithashim /
`easy-express` is a CLI tool to automate the setup of a common Express.js backend. This tool helps you quickly scaffold a backend setup without rewriting the setup each time.
abc509791-svg /
🚀 Scaffold Next.js projects effortlessly with pre-configured shadcn/ui components using this simple CLI tool.
labibimamhidayat /
A simple CLI tool to scaffold a new **React + Vite + TypeScript** project using a customizable base template. This tool helps you quickly spin up a new project, rename metadata, initialize Git, and get straight to coding.