create-mcp-server-kit
Verified Safeby bernardpacis
Overview
Scaffold a production-ready Model Context Protocol (MCP) server quickly.
Installation
npx create-mcp-server-kit@latest <your_project_directory>Security Notes
The project is a CLI scaffolding tool. It uses `spawnSync` to execute `git` and package manager commands (`npm install`, etc.). While `spawnSync` can be a vector for abuse if commands are constructed from untrusted input, here it's used for standard development operations with predefined commands and arguments. Input validation for directory names and template options is handled, reducing risk. No `eval` or obvious malicious patterns were found. The generated server template uses the official MCP SDK and Zod for input validation, which is a good security practice for API inputs. The server uses stdio transport, reducing network exposure by default.
Similar Servers
mcp-manager
A web GUI to easily manage and configure Model Context Protocol (MCP) servers for the Claude Desktop app on MacOS, generating terminal commands for installation and setup.
mcp-kit
A CLI tool for scaffolding new Model Context Protocol (MCP) applications, including MCP Servers and Clients.
template-mcp-server
Provides a CLI tool and template to quickly get started building a Model Context Protocol (MCP) server using FastMCP, supporting both stdio and HTTP transports.
mcp-typescript-template
This project provides a foundational TypeScript template for developing remote Model Context Protocol (MCP) servers with robust tooling and best practices.