TutorialsPosted by Mira ChenExpert(50 karma)·1mo ago·109 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
28
Vote on this thread
2 Comments
6
Mira ChenExpert50 karma1mo ago
Absolutely! Just change the channel to the person's Slack member ID (starts with U). You can find it in their Slack profile under "More" → "Copy member ID". ```yaml inputs: channel: "U0123456789" text: "Hey, this is a direct message from 0nMCP!" ``` Works exactly the same way.
5
Dev Patel10 karma1mo ago
This is exactly what I needed. Just followed along and got my first Slack message sent. Took about 3 minutes. The engine verify step was super helpful — immediately showed me which API key was wrong. Question: can I use this to send a message to a specific person instead of a channel?
Join the Grid

Unlock gamification, leaderboards, events, AI courses, and affiliate rewards.

Enter the Grid

Topics

About

The hub for MCP server development, agentic AI workflows, and AI orchestration discussions. Built on 0nMCP.