pndrPersonal productivity app with Ideas/Tasks, Journal, Habits, Package tracking, Lists, and more via MCP
Pndr is your personal productivity command center, now accessible to AI agents via MCP (Model Context Protocol).
With Pndr's MCP integration, AI assistants like Claude can:
All of this happens in your own private Pndr account - the AI just provides a natural language interface to your data.
Pndr exposes your personal productivity data through the Model Context Protocol (MCP), allowing AI assistants to interact with your tasks, habits, and journal on your behalf.
Example conversations:
The AI uses Pndr's MCP tools behind the scenes to read and write your data securely.
This integration is perfect if you:
mcporter CLI toolOpenClaw can set this up automatically! Just ask your assistant:
"Connect to my Pndr account"
Then provide your Pndr OAuth credentials when prompted.
client_id and client_secret
curl -X POST https://pndr.io/oauth/token \
-H "Content-Type: application/json" \
-d '{
"grant_type": "client_credentials",
"client_id": "pndr_client_YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET"
}'
This returns a JSON response with an access_token. Copy it.
For mcporter (config/mcporter.json):
{
"mcpServers": {
"pndr": {
"baseUrl": "https://pndr.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
}
}
}
For Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"pndr": {
"url": "https://pndr.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
}
}
}
mcporter list pndr --schema
You should see 47 available tools!
add_idea - Create a new idea/tasklist_ideas - List and filter ideasedit_idea - Edit an existing ideacomplete_idea - Mark an idea as completeddelete_idea - Delete an ideacategorize_idea - Update tags on an ideaset_work_status - Set work status (not started, in progress, blocked)get_kanban - Get kanban board viewget_today - Get today's focus itemsadd_thought - Record a journal/diary entryget_thoughts - Retrieve thoughts with fuzzy searchdelete_thought - Delete a thoughtadd_habit - Create a new daily habitlist_habits - List all habits with completion statuscomplete_habit - Mark a habit as completed for todayuncomplete_habit - Undo a habit completionupdate_habit - Update habit text or resourcesarchive_habit - Archive (delete) a habitadd_checklist_item - Add a checklist item to an ideacomplete_checklist_item - Mark checklist item as completeduncomplete_checklist_item - Mark checklist item as not completedget_checklist - Get all checklist items for an ideaedit_checklist_item - Edit checklist item textdelete_checklist_item - Delete a checklist itemadd_list - Create a new listlist_lists - Get all lists with optional filteringget_list - Get a single list with itemsupdate_list - Update list name, description, or tagsdelete_list - Delete a list and all its itemsadd_list_item - Add an item to a listupdate_list_item - Update list item text, notes, or completiontoggle_list_item - Toggle list item completiondelete_list_item - Remove an item from a listreorder_list_items - Change item order in a listadd_package - Track a new package deliverylist_packages - List tracked packagesupdate_package - Update package informationmark_package_delivered - Mark a package as delivereddelete_package - Delete a package from trackinglist_tags - List all available tagscreate_tag - Create a new tagdelete_tag - Delete a tagadd_comment - Add a comment to an idealist_comments - List comments on an ideadelete_comment - Delete a commentlist_attachments - List attachments for an ideaget_attachment - Get attachment metadatadownload_attachment - Download attachment with base64 dataget_accomplishments - Get summary of completed tasks and habitsget_patterns - Analyze patterns in ideas and thoughts over timeOnce connected, you can interact with Pndr naturally through your AI assistant:
Task Management:
Habits:
Journaling:
Package Tracking:
Lists:
If you're using mcporter directly:
# Add a task
mcporter call pndr.add_idea text="Build a new feature" tags:work,coding priority:P1
# Check today's focus
mcporter call pndr.get_today
# Complete a habit
mcporter call pndr.complete_habit habit-id:abc123
# Add journal entry
mcporter call pndr.add_thought content="Had a great day working on the project"
# View kanban board
mcporter call pndr.get_kanban tags:work
Pndr uses OAuth 2.0 client credentials flow. Access tokens expire after 1 year (365 days).
To refresh your token, repeat the curl command from step 2 and update your mcporter config with the new Bearer token.
Open source at https://github.com/Dgershman/pndr
Generated Mar 1, 2026
Individuals use the AI agent to manage daily tasks, habits, and journal entries through natural language commands, such as adding tasks with priorities or tracking habits. This streamlines personal organization without manual app interaction, ideal for busy professionals or students seeking efficiency.
Small business teams leverage the AI to coordinate tasks and checklists via shared Pndr accounts, enabling managers to assign and track progress through voice or chat commands. This reduces administrative overhead and improves project visibility in industries like consulting or retail.
Users in fitness or mental wellness programs utilize the AI to log habits, journal thoughts, and monitor progress through automated entries and insights. This supports adherence to routines and provides data-driven feedback for coaches or self-improvement efforts.
Online shoppers and e-commerce businesses use the AI to track deliveries by adding packages with carriers and receiving updates, reducing manual checking and improving customer service. This is practical for frequent buyers or logistics-focused roles.
Creative professionals like writers or designers employ the AI to manage idea lists, journal inspirations, and break down projects into checklists, facilitating brainstorming and workflow management without disrupting creative flow.
Offer a free basic tier with limited features like task and habit tracking, then charge for premium features such as advanced analytics, team collaboration, or unlimited integrations. Revenue is generated through monthly subscriptions, targeting individual users and small teams.
License the MCP integration to larger companies for internal productivity tools, providing custom features, enhanced security, and dedicated support. Revenue comes from annual contracts and implementation fees, focusing on industries with high workflow demands.
Partner with AI assistant platforms or productivity tool vendors to offer bundled services, earning commissions on referrals or co-marketing deals. Revenue is generated through affiliate sales and partnership agreements, expanding user reach without direct sales efforts.
💬 Integration Tip
Ensure users have their Pndr API credentials ready and test the MCP connection with a simple command like listing tools to verify setup before full usage.
Manage Trello boards, lists, and cards via the Trello REST API.
Sync and query CalDAV calendars (iCloud, Google, Fastmail, Nextcloud, etc.) using vdirsyncer + khal. Works on Linux.
Manage tasks and projects in Todoist. Use when user asks about tasks, to-dos, reminders, or productivity.
Master OpenClaw's timing systems. Use for scheduling reliable reminders, setting up periodic maintenance (janitor jobs), and understanding when to use Cron v...
Calendar management and scheduling. Create events, manage meetings, and sync across calendar providers.
Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission con...