Skip to content

Quick Start

Get started with MCP Templates in minutes.

1. List Available Templates

mcpp list

2. Deploy a Template

# Deploy the demo template
mcpp deploy demo

# Deploy with custom configuration
mcpp deploy filesystem --port 8080

3. Test Your Deployment

# Check if the server is running
curl http://localhost:8080/health

# View server logs
mcpp logs demo

4. Clean Up

# Stop the server
mcpp stop demo

# Remove the deployment
mcpp remove demo

Next Steps