| name | flowmind |
| description | Manage productivity with FlowMind โ goals, tasks (with subtasks), notes, people, and tags via REST API. Use when the user wants to create, list, update, or delete goals, tasks, notes, contacts, or tags; manage focus/priorities; track progress; or organize their productivity workspace through FlowMind. |
FlowMind
FlowMind is a personalized productivity workspace that brings your goals, tasks, notes, and contacts together in one place. Unlike rigid project management tools, FlowMind adapts to how you actually think and work โ linking tasks to bigger goals, tagging by energy level and focus needs, and giving you a clear view of what matters most right now. Beyond task management, FlowMind helps you nurture your network, schedule meetings, and track habits โ all the pieces of a productive life that usually live in separate apps. Best of all, most features are accessible through natural language via AI, so you can manage your workflow just by saying what you need.
Setup
Set these in your agent config or environment:
FLOWMIND_API_KEY โ Bearer token from your FlowMind account (Settings โ API Keys)
- Base URL:
https://flowmind.life/api/v1
All requests use Authorization: Bearer <FLOWMIND_API_KEY> and Content-Type: application/json.
Quick Reference
Goals
GET /goals โ list (filter: status, category, pinned; sort: title, target_date, progress)
POST /goals โ create (required: title)
GET /goals/:id โ get
PATCH /goals/:id โ update
DELETE /goals/:id โ delete
GET /goals/:id/tasks โ list tasks for goal
Fields: title, description, status (active/completed/archived), category (business/career/health/personal/learning/financial), target_date, progress (0-100), pinned
Tasks
GET /tasks โ list (filter: status, priority, energy_level, goal_id, person_id, due_date_from/to, focused, focus_today)
POST /tasks โ create (required: title)
GET /tasks/:id โ get
PATCH /tasks/:id โ update
DELETE /tasks/:id โ delete
GET /tasks/:id/subtasks โ list subtasks
POST /tasks/:id/subtasks โ create subtask