Basic Usage
Learn the basic commands and usage of gm-mcp.
Common Commands
Create Project
bash
# Interactive creation
gm-mcp init my-project
# Quick creation
gm-mcp init my-project --yesView Help
bash
gm-mcp --help
gm-mcp helpView Version
bash
gm-mcp --version
gm-mcp versionTemplate Selection
Basic Template
bash
gm-mcp init my-project --template basicSuitable for learning and daily development.
Advanced Template
bash
gm-mcp init my-project --template advancedSuitable for production environments and complex projects.
Minimal Template
bash
gm-mcp init my-project --template minimalSuitable for rapid prototyping and simple projects.
Project Development
Development workflow after creating a project:
bash
cd my-project
npm install
npm run devNext Steps
- Advanced Usage - Explore advanced features
- Template Overview - Learn about all templates