Skip to content

Quick Start

Get started with MCP Templates in minutes.

1. List Available Templates

mcpt list

2. Deploy a Template

# Deploy the demo template
mcpt deploy demo

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

3. Test Your Deployment

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

# View server logs
mcpt logs demo

4. Clean Up

# Stop the server
mcpt stop demo

# Remove the deployment
mcpt remove demo

Next Steps