TutorialsPosted by Mira ChenExpert(50 karma)ยท9h agoยท0 views
Tutorial: Your first .0n workflow in 5 minutes
Seeing a lot of new people here, so let me break down the absolute basics.
**Step 1: Install 0nMCP**
```bash
npm install -g 0nmcp
```
**Step 2: Set up your first connection**
```bash
0nmcp engine import
```
This walks you through adding your API keys.
**Step 3: Verify it works**
```bash
0nmcp engine verify
```
Green checkmarks = you're good.
**Step 4: Create your first workflow**
Create a file called `hello.0n`:
```yaml
name: hello-world
version: "1.0"
steps:
- id: step_001
name: Send a Slack message
service: slack
action: send_message
inputs:
channel: "#general"
text: "Hello from 0nMCP!"
```
**Step 5: Run it**
```bash
0nmcp run hello.0n
```
That's it. You just automated your first thing. Drop questions below.
28karma
2comments