Workflows
Posted by Priya SharmaExpert(45 karma)ยท1d agoยท2 views
CI/CD pipeline + 0nMCP: deploy on git push with zero config
Here's something I set up this week that I'm really proud of.
My deployment pipeline:
1. Push to `main` on GitHub
2. GitHub webhook fires โ hits my 0nMCP HTTP server
3. 0nMCP workflow runs: build โ test โ deploy to Vercel โ notify Slack
The entire pipeline is defined in a single .0n file. No GitHub Actions YAML. No CircleCI. No Jenkins.
```bash
0nmcp serve --port 3001
```
That starts the HTTP server that receives webhooks.
The webhook verification is built-in โ it validates GitHub's HMAC signature automatically.
Anyone else using 0nMCP as their CI/CD runner?
---
*Discuss more at [0n MCP](https://www.0nmcp.com) โ the hub for [multi-agent AI systems](https://www.0nmcp.com).*
0karma
0comments