- Home
- MCP servers
- Create
Create
- typescript
21
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"maoxiaoke-create-mcp-server": {
"command": "npx",
"args": [
"-y",
"create-mcp-server@latest"
]
}
}
}You can bootstrap a new MCP server scaffold quickly using the dedicated scaffolding tool. It streamlines the setup process, so you can focus on implementing your MCP server’s data sources and actions without starting from scratch.
How to use
You use the scaffolding server to generate a ready-to-use MCP server skeleton in your workspace. Run the provided command to create a new MCP server scaffold, then customize the generated files to define your data sources, actions, and endpoints. This approach speeds up development by giving you a solid, consistent starting point for MCP servers.
How to install
Prerequisites: you need Node.js and npm installed on your system. You can verify installation with the following commands.
node -v
npm -v
Install and run the scaffolding tool to generate a new MCP server scaffold in your current directory.
npx -y create-mcp-server@latest
Follow the prompts if any appear, and wait for the scaffold to be created. After completion, open the new project folder and start customizing your MCP server according to your needs.
Notes
This tool acts as a starting point for MCP server development. It is designed to help you scaffold consistent server structures quickly and iteratively build out your MCP data sources and actions.
License information: this project is licensed under the MIT License. Review the LICENSE file in your scaffold for details.
Available tools
create-mcp-server
A scaffolding utility that generates a ready-to-use MCP server skeleton to speed up MCP server development.