一键导入
flowmail
Connect to Flowmail to manage email-driven business workflows — approvals, report tracking, timeline events, AI risk prediction, and entity management.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Connect to Flowmail to manage email-driven business workflows — approvals, report tracking, timeline events, AI risk prediction, and entity management.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Help users create an enterprise application on Feishu, DingTalk, or WeCom to enable OAuth integration with Flowmail. Uses browser automation to navigate developer consoles and submit credentials back via MCP.
Integrate @ai-eyes SDK into any React/Next.js project. Automatically identify UI modules and add data-module, data-section, data-ai-eyes-ignore attributes. Use when setting up ai-eyes, tagging modules, or asking "how do I integrate AI Eyes into my project".
| name | flowmail |
| description | Connect to Flowmail to manage email-driven business workflows — approvals, report tracking, timeline events, AI risk prediction, and entity management. |
| metadata | {"openclaw":{"emoji":"📬","homepage":"https://flowmail.work","requires":{"env":["FLOWMAIL_API_TOKEN"]},"primaryEnv":"FLOWMAIL_API_TOKEN"}} |
Flowmail is an email-native business execution platform. It automatically converts emails into structured business items (approvals, reports, issues) and tracks their progress with AI-powered analysis.
{
"mcp": {
"servers": {
"flowmail": {
"url": "https://app.flowmail.work/mcp/streamable-http",
"headers": {
"Authorization": "Bearer fm_your_token_here"
}
}
}
}
}
{
"mcpServers": {
"flowmail": {
"url": "https://app.flowmail.work/mcp/streamable-http",
"headers": {
"Authorization": "Bearer fm_your_token_here"
}
}
}
}
export FLOWMAIL_API_TOKEN="fm_your_token_here"
All MCP tool calls require a valid API Token in the Authorization: Bearer <token> header. The token is scoped to an organization — you don't need to pass organizationId to any tool; it's automatically resolved from the token.
list_entities — List structured business entities (approvals, reports, issues, feedback). Supports filters by type, status, and limit.get_entity — Get full details of any entity including timeline of events and related email threads.update_entity_status — Update the status of a business entity (e.g., mark as completed, in_progress, blocked). Records reason in timeline.list_pending_approvals — List all pending approval requests for the organization.approve_request — Approve a pending request. Optionally include a comment.reject_request — Reject a pending request with a required reason.list_reports — List report entities, filterable by status.get_report_summary — Get AI-generated summary of a report including extracted fields.list_email_connections — List all connected email accounts.search_emails — Search emails by keyword, sender, or subject. Returns matching threads with their associated entities.get_entity_timeline — Get the full chronological timeline of events for an entity. Filter by event types.add_timeline_event — Add a manual event (note, milestone, action_taken, status_changed, ai_summary, email_sent). Supports arbitrary metadata.get_timeline_diff — AI-powered semantic diff between two points in a timeline.predict_entity_risk — AI-powered risk prediction. Returns risk level, factors, deadline risk, and suggested actions.When executing multi-step tasks, agents can report results back:
POST https://app.flowmail.work/api/agent/callback
Authorization: Bearer fm_your_token_here
Content-Type: application/json
{
"entityId": "...",
"taskId": "optional-tracking-id",
"status": "success",
"summary": "Completed: scheduled meeting with 3 attendees",
"actions": [
{ "tool": "add_calendar_event", "status": "success", "result": {} }
]
}
This adds a timeline event to the entity so the user sees the outcome in Flowmail's UI (tagged as "via openclaw").
User: What approvals are waiting for me?
Agent: [calls list_pending_approvals] → returns list
User: Approve the marketing budget request from Li Ming
Agent: [calls list_pending_approvals] → [calls approve_request with entityId]
User: Find emails about the Q3 report and summarize progress
Agent: [calls search_emails with query "Q3 report"] →
[calls get_entity for the matching entity] →
[calls get_report_summary]
User: Is the server migration project at risk?
Agent: [calls list_entities to find entity] → [calls predict_entity_risk]
| Dimension | Flowmail Sidebar | OpenClaw / MCP |
|---|---|---|
| Setup | Built-in, zero config | Requires API Token |
| UI | Rich cards, streaming | Text-only (agent decides) |
| Cross-system | Flowmail only | Flowmail + Calendar + Slack + GitHub + 3,200+ Skills |
| Execution | Cloud, managed | Local or cloud, user-controlled |
| Best for | Quick in-app actions | Complex multi-system workflows |
via: "mcp" metadata