AskHumanToWork MCP Server
OfficialAllows bidirectional syncing of tasks with Google Tasks, enabling task completion and reminder cancellation across platforms.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AskHumanToWork MCP Serverremind me to review the auth PR tomorrow at 3pm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AskHumanToWork
The todo hub where your AI asks you to work.
AI agents (Claude Desktop, Claude Code, any MCP client) capture todos into your list — with due dates and provenance ("why this exists") — and AskHumanToWork reliably reminds you until they're done. Optionally (Pro), todos mirror out to Microsoft To Do / Google Tasks so they appear where you already look.

Why
Heavy AI users generate implicit todos constantly: "you should follow up on X", "remember to deploy Y on Friday". Those evaporate in chat history. AskHumanToWork captures them at the source — the AI conversation itself — and closes the loop with an escalating reminder engine.
Every AI-created todo shows who added it and why:


Tutorial — zero to your first AI-captured todo
Related MCP server: Pingfyr
0. Prerequisites
Node ≥ 20 and pnpm (
npm i -g pnpm)PostgreSQL 16 and Mailpit (local email catcher)
Flutter 3.x (only for the mobile app)
macOS one-liner for the services:
brew install postgresql@16 mailpit
brew services start postgresql@16 mailpit
createdb askhumantowork(Prefer containers? docker compose up -d starts the same services.)
1. Install & configure
git clone https://github.com/KuronokiCorp/AskHumanToWork.git && cd AskHumanToWork
pnpm install
cp .env.example .env
# In .env, set:
# ENCRYPTION_KEY → run: openssl rand -base64 32
# VAPID keys → run: npx web-push generate-vapid-keys (for browser push; optional)2. Build, migrate, seed
pnpm build
pnpm db:migrate
pnpm db:seedThe seed prints your demo credentials — copy the MCP token now, it's stored only as a hash:
Seeded demo data.
Login: demo@askhumantowork.local / demo1234
MCP token: tfa_XXXXXXXXXXXXXXXXXXXXXXXX3. Run it (3 terminals)
pnpm dev:api # API on :3000, MCP endpoint at /mcp
pnpm --filter @askhumantowork/api dev:worker # reminder + sync engine
pnpm dev:web # web app on :5173Open http://localhost:5173 and sign in with the demo account. You'll see seeded todos, including AI-captured ones in the AI Inbox.
4. Add your first todo (human style)
In the quick-add box, natural language just works:
Ship the release notes @friday 5pm #Work !2@… = due date (resolved in your timezone, server-side) · #… = project (auto-created) ·
!1-3 = priority.
5. Connect Claude — the main event
claude mcp add heyhuman \
--env TODO_API_TOKEN=tfa_your_token_here \
-- npx -y heyhuman-mcpThat's the whole setup — just a token. The connector is a thin HTTP client that defaults to the
hosted API (https://askhumantowork--askhumantowork.asia-east1.hosted.app); no local server or
database required. Point it elsewhere with --env TODO_API_URL=... if you self-host. Claude
Desktop users: see the equivalent JSON config in packages/mcp/README.md.
Now, in any Claude session:
You: remind me to review the auth PR tomorrow at 3pm
Claude: (calls
add_todowithdue_natural: "tomorrow 3pm"andorigin_context: "You asked while we were discussing the auth refactor.") Added — it'll remind you tomorrow at 2pm and 3pm. → http://localhost:5173/t/…
Refresh the AI Inbox — the todo is there, with Claude's name and the reason it exists.
Also try:
"what's on my plate today?" → Claude calls
get_agenda"I finished the auth PR" →
complete_todo(reminders cancelled)The
/capture-followupsprompt → Claude scans the whole conversation and files every commitment as a todo.
6. Watch a reminder fire
Reminders ladder automatically: 1 day before → 1 hour before → at due → daily overdue nudges. To see one in 20 seconds:
curl -X POST http://localhost:3000/api/todos \
-H "Authorization: Bearer tfa_your_token" -H "Content-Type: application/json" \
-d '{"title":"Reminder demo","dueNatural":"in 10 minutes","reminders":["in 20 seconds"]}'Open the Mailpit UI at http://localhost:8025 — the reminder email arrives, including the AI provenance if an agent created the todo. (Enable browser push in Settings → Notifications for native notifications; quiet hours are respected.)
7. Mobile app — HeyHuman (Flutter)
The mobile app ships as HeyHuman ("Your AI remembers. You get it done.") — every notification reads as your AI addressing you.
cd mobile && flutter run # iOS simulator or Android emulatorSign in with the demo account. Same Today/Upcoming/Projects/AI Inbox views plus search and settings; server reminders are mirrored as local notifications; completing a todo on the phone syncs back instantly.
8. Mirror to Microsoft To Do / Google Tasks (Pro)
Third-party sync is a Pro-plan feature. As the seeded admin you're already Pro; upgrade other users on Settings → Admin.

Register an OAuth app — Microsoft: Azure Portal → App registrations, delegated
Tasks.ReadWrite+offline_access, redirect URIhttp://localhost:3000/api/integrations/ms-todo/callback· Google: Cloud Console → OAuth credentials, scopehttps://www.googleapis.com/auth/tasks, redirect URIhttp://localhost:3000/api/integrations/google-tasks/callbackPaste client id/secret in Settings → Admin (or the
.envvars).Settings → Integrations → Connect, pick a target list, direction (two-way / outbound), and filters (AI-only, priority threshold).
AskHumanToWork stays the source of truth: mirrors degrade per provider capability (Google Tasks has date-only due dates and no reminders — our reminder engine still covers you), and completing a task in the external app completes it here and cancels the reminders (2-minute polling).
Reference
Architecture
AI agents ──MCP (stdio / HTTP)──►┐
Web (React) ──REST──────────────►│ Fastify API ──► PostgreSQL (source of truth)
Flutter app ──REST──────────────►┘ │
├─► pg-boss (Postgres): reminder ladder + sync outbox
├─► Email (SMTP) + Web Push reminders
└─► Adapters: Microsoft To Do, Google Tasks (Pro)Package | What |
| zod schemas, enums, server-side natural-language date resolution |
| Drizzle ORM schema, migrations, seed |
| domain services, entitlements, sync engine, provider adapters |
| Fastify REST API, auth, |
|
|
| React web app (Vite + Tailwind + TanStack Query) |
| Flutter app (Riverpod + dio + local notifications) |
MCP surface
Tools: add_todo (natural dates, origin_context provenance, idempotent, sync_to routing) ·
list_todos · search_todos · update_todo · complete_todo · reschedule_todo · get_agenda ·
list_projects · list_integrations · resolve_time
Resources: todo://agenda/today · todo://agenda/overdue · todo://projects
Prompts: capture-followups · review-my-todos
Remote clients can skip the local install entirely: Streamable HTTP MCP at POST <server>/mcp
with Authorization: Bearer <token>.
Auth model
Web = cookie sessions. Mobile = long-lived device tokens (POST /api/auth/login with
mode:"token"). AI agents = scoped Personal Access Tokens (todos:read/write, projects:read,
integrations:read) created in Settings → API tokens.
PATs can additionally be project-scoped: pick a project (or create one inline) when minting the token, and that token only sees/edits todos in its project plus ones it created itself — give each agent its own sandbox. Tokens without a project (“Admin — full access”) and web sessions see everything; device tokens are always full-access.
Plans
Everything is free except third-party sync (Pro). Gating is enforced server-side (connect → HTTP 402, no outbound fan-out, inbound pollers skip). Until billing ships, admins set plans on the Admin page.
Deploying
Single-image deploy — the API container also serves the built web app (SERVE_WEB=true) and runs
migrations on start; a second container from the same image runs the reminder/sync worker:
cp .env.example .env # set SESSION_SECRET + ENCRYPTION_KEY (+ VAPID keys)
docker compose --profile app up -d --build
# → http://localhost:3000 (web + API + MCP), worker running, Postgres/Mailpit includedFor a real host (Fly.io / Railway / a VPS): build the Dockerfile, provide DATABASE_URL,
SMTP credentials, and set COOKIE_SECURE=true + TRUST_PROXY=true behind HTTPS.
Sessions and the job queue live in Postgres (pg-boss), so multiple API instances are safe and no Redis is needed.
Publishing the npm connector
cd packages/mcp && npm login && pnpm publishShips only dist/ with two runtime deps; prepublishOnly builds automatically.
Tests
pnpm typecheck && pnpm test # TS packages (incl. date-resolution unit tests)
cd packages/web && pnpm test:e2e # Playwright: landing + agenda + tokens (boots API on askhumantowork_e2e)
cd mobile && flutter analyze # FlutterCore integration tests (dedup, recurrence, reminders, plan gating) run against real Postgres — locally createdb askhumantowork_test first. A scripted end-to-end regression (auth, todos, dedup, agenda, MCP both transports, reminder
delivery/cancellation, plan gating) lives in the feature-tester agent charter at
.claude/agents/feature-tester.md — Claude Code users can run it with "run the feature-tester".
Roadmap
Recurring todos · edit-in-place UI · web search & tag filters · notification action buttons · FCM/APNs mobile push · morning AI digest · Graph webhooks (realtime inbound) · Todoist adapter · Stripe billing · cloud deploy.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to manage todo lists through natural language by creating, listing, updating, completing, and deleting tasks stored in Firebase Firestore. Supports custom system prompts for personalized task management workflows.Last updated542ISC
- AlicenseAqualityAmaintenanceEnables AI agents to schedule and manage reminders across platforms like email, Slack, Discord, and webhooks. It provides tools to create, list, update, and cancel notifications to automate task reminders and agent wake-ups.Last updated4311MIT
- Alicense-qualityDmaintenanceA persistent todo list server that enables AI assistants to manage tasks across different platforms using the Model Context Protocol. It provides tools for creating, listing, updating, and deleting todos with support for priorities, tags, and due dates.Last updatedMIT
- Flicense-qualityDmaintenanceEnables AI clients to manage todo tasks through Tools for adding, listing, completing, and searching, alongside Prompts for daily reviews and task breakdowns. Exposes task lists and statistics as Resources with local JSON file persistence.Last updated
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KuronokiCorp/AskHumanToWork'
If you have feedback or need assistance with the MCP directory API, please join our Discord server