Build and automate workflows for business operations with Notion and Slack integration
Overall
score
18%
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Build and automate workflows for business operations using Notion for task tracking and Slack for notifications.
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@makenotion/mcp-server"],
"env": { "NOTION_API_KEY": "${NOTION_API_KEY}" }
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}" }
}
}
}// 1. Create Notion database for workflow
const db = await notion.createDatabase({
parentId: workspaceId,
title: "Sales Pipeline",
properties: {
"Stage": { "select": { "options": ["Lead", "Qualified", "Proposal", "Closed"] } },
"Contact": { "people": {} },
"Due Date": { "date": {} },
"Status": { "status": { "options": ["Not Started", "In Progress", "Done"] } }
}
});
// 2. Set up Slack notification for new items
async function notifyNewLead(page: any) {
await slack.chat_postMessage({
channel: "#sales-leads",
text: `New lead: ${page.properties.Name.title[0].plain_text}`,
blocks: [
{
"type": "section",
"text": { "type": "mrkdwn", "text": `*New Lead*\n${page.url}` }
}
]
});
}
// 3. Create automation trigger
const trigger = await notion.createWebhook({
databaseId: db.id,
url: "https://api.yourautomation.com/trigger",
events: ["page.created"]
});// Update task status in Notion
await notion.pages.update({
pageId: taskId,
properties: {
"Status": { "status": { "name": "In Progress" } }
}
});
// Send Slack update
await slack.chat_postMessage({
channel: "#tasks",
text: `Task updated: https://notion.so/page/${taskId}`
});Skill v2.0 - Workflow Builder
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.