# Mob (Demo) MCP server

Ephemeral no-signup demo of Mob, an AI-first personal CRM you run in natural language.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-benkaiser-mob-demo
- Repository: https://github.com/benkaiser/mob-mcp-crm
- Website: https://mobcrm.au/

## Install
- Endpoint: https://demo.mobcrm.au/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://demo.mobcrm.au/mcp

## Tools
- contact_create - Create a new contact with basic info Endpoint: https://demo.mobcrm.au/mcp
- contact_get - Get full contact details including all related data in one call: contact methods, addresses, food preferences, custom fields, tags, relationships, recent notes, recent activities, life events, active reminders, open tasks, recent gifts, active debts, and debt summary Endpoint: https://demo.mobcrm.au/mcp
- contact_update - Update contact fields Endpoint: https://demo.mobcrm.au/mcp
- contact_delete - Soft-delete a contact (can be restored later) Endpoint: https://demo.mobcrm.au/mcp
- contact_restore - Restore a soft-deleted contact Endpoint: https://demo.mobcrm.au/mcp
- contact_list - List contacts with optional filters (status, favorite, company, tag, search). Returns paginated results. Endpoint: https://demo.mobcrm.au/mcp
- contact_merge - Merge two contacts into one. All child records (notes, activities, tags, etc.) from the secondary contact are moved to the primary. The secondary contact is soft-deleted after merge. Endpoint: https://demo.mobcrm.au/mcp
- contact_find_duplicates - Scan for potential duplicate contacts using name, email, and phone matching. Returns pairs of contacts that may be duplicates with the reason for the match. Endpoint: https://demo.mobcrm.au/mcp
- contact_method_manage - Add, update, or remove a contact method (email, phone, social handle, etc.) Endpoint: https://demo.mobcrm.au/mcp
- address_manage - Add, update, or remove an address for a contact Endpoint: https://demo.mobcrm.au/mcp
- food_preferences_get - Get food preferences for a contact (dietary restrictions, allergies, favorites, dislikes) Endpoint: https://demo.mobcrm.au/mcp
- food_preferences_upsert - Set or update food preferences for a contact. Replaces all fields - pass all known preferences, not just changes. Endpoint: https://demo.mobcrm.au/mcp
- custom_field_manage - Add, update, or remove a custom field on a contact Endpoint: https://demo.mobcrm.au/mcp
- relationship_manage - Add, update, remove, or list relationships between contacts.
• action="add": Create a relationship between two contacts. Automatically creates the inverse relationship. Requires contact_id, related_contact_id, and relationship_type. To create relationships involving yourself, use your own contact_id from the prime tool. Relationships describe how contacts relate to each other (e.g. Bandit is Bingo's parent).
• action="update": Update a relationship. Also updates the inverse relationship. Requires id. Optionally set relationship_type and/or notes.
• action="remove": Remove a relationship and its inverse. Requires id.
• action="list": List all relationships for a contact. Requires contact_id. Endpoint: https://demo.mobcrm.au/mcp
- note_manage - Create, update, delete, or restore a note for a contact.
• action="create": Add a new note. Requires contact_id and body. Optional title, is_pinned.
• action="update": Update an existing note. Requires id. Optional title, body, is_pinned.
• action="delete": Soft-delete a note. Requires id.
• action="restore": Restore a soft-deleted note. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- note_list - List and search notes. When contact_id is provided alone, lists that contact's notes (pinned first). Add query, tag_name, is_pinned, or omit contact_id to search across all contacts. Endpoint: https://demo.mobcrm.au/mcp
- tag_manage - Manage tags and contact tagging.
• action="list": List all tags for the authenticated user. No additional fields required.
• action="create": Create a new tag (or return existing if name already exists). Requires name.
• action="update": Update a tag name. Requires id and name.
• action="delete": Delete a tag. Requires id.
• action="tag_contact": Tag a contact. Creates the tag if it doesn't exist. Requires name (the tag name) and contact_id.
• action="untag_contact": Remove a tag from a contact. Requires id (the tag ID) and contact_id. Endpoint: https://demo.mobcrm.au/mcp
- activity_manage - Create, get, update, delete, or restore an activity/interaction.
• action="create": Record a new activity. Requires type, occurred_at, participant_contact_ids. Optional title, description, duration_minutes, location, activity_type_id.
• action="get": Get full details of an activity. Requires id.
• action="update": Update an activity. Requires id. Optional type, title, description, occurred_at, duration_minutes, location, participant_contact_ids.
• action="delete": Soft-delete an activity. Requires id.
• action="restore": Restore a soft-deleted activity. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- activity_list - List activities, optionally filtered by contact or type. Add days_back or since for a chronological activity journal with participant names. Endpoint: https://demo.mobcrm.au/mcp
- activity_type_manage - List, create, update, or delete custom activity types Endpoint: https://demo.mobcrm.au/mcp
- life_event_manage - Create, list, update, delete, or restore life events for a contact.
• action="create": Record a new life event. Requires contact_id, event_type, and title. Optional description, occurred_at, related_contact_ids.
• action="list": List life events for a contact. Requires contact_id. Optional page, per_page, include_deleted.
• action="update": Update a life event. Requires id. Optional event_type, title, description, occurred_at, related_contact_ids.
• action="delete": Soft-delete a life event. Requires id.
• action="restore": Restore a soft-deleted life event. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- contact_timeline - Get the unified timeline for a contact (activities, life events, notes, etc.) Endpoint: https://demo.mobcrm.au/mcp
- reminder_manage - Create, list, update, complete, snooze, delete, or restore reminders.
• action="create": Create a reminder for a contact. Requires contact_id, title, and reminder_date. Optional description, frequency.
• action="list": List reminders, optionally filtered by contact or status. Optional contact_id, status, page, per_page, include_deleted.
• action="update": Update a reminder. Requires id. Optional title, description, reminder_date, frequency.
• action="complete": Mark a reminder as completed. For recurring reminders, advances to the next occurrence. Requires id.
• action="snooze": Snooze a reminder to a new date. Requires id and new_date.
• action="delete": Soft-delete a reminder. Requires id.
• action="restore": Restore a soft-deleted reminder. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- notification_list - List notifications (newest first) Endpoint: https://demo.mobcrm.au/mcp
- notification_create - Create a custom notification Endpoint: https://demo.mobcrm.au/mcp
- notification_read - Mark notification(s) as read. Pass id for a single notification, or all=true for all. Endpoint: https://demo.mobcrm.au/mcp
- gift_manage - Create, update, delete, or restore a gift for a contact.
• action="create": Track a gift idea, plan, or record a given/received gift. Requires contact_id, name, and direction. Optional description, url, estimated_cost, currency, occasion, status, date.
• action="update": Update an existing gift (change status, add details, etc.). Requires id. Optional name, description, url, estimated_cost, currency, occasion, status, direction, date.
• action="delete": Soft-delete a gift. Requires id.
• action="restore": Restore a soft-deleted gift. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- gift_list - List gifts, optionally filtered by contact, status, or direction. Add occasion, sort_by, sort_order, or omit contact_id for a cross-contact gift tracker with summary stats. Endpoint: https://demo.mobcrm.au/mcp
- debt_manage - Create, list, update, settle, delete, restore, or summarize debts.
• action="create": Track a new debt. Requires contact_id, amount, direction. Optional currency, reason, incurred_at.
• action="list": List debts. Optional contact_id, status, page, per_page, include_deleted.
• action="update": Update a debt. Requires id. Optional amount, currency, direction, reason, incurred_at.
• action="settle": Mark a debt as settled. Requires id.
• action="delete": Soft-delete a debt. Requires id.
• action="restore": Restore a soft-deleted debt. Requires id.
• action="summary": Get net balance summary for a contact. Requires contact_id. Endpoint: https://demo.mobcrm.au/mcp
- task_manage - Create, list, update, complete, delete, or restore tasks.
• action="create": Create a task. Requires title. Optional description, contact_id, due_date, priority.
• action="list": List tasks. Optional contact_id, status, priority, page, per_page, include_deleted.
• action="update": Update a task. Requires id. Optional title, description, contact_id, due_date, priority, status.
• action="complete": Mark a task as completed. Requires id.
• action="delete": Soft-delete a task. Requires id.
• action="restore": Restore a soft-deleted task. Requires id. Endpoint: https://demo.mobcrm.au/mcp
- data_export - Export all CRM data as a JSON object (contacts, relationships, notes, activities, life events, reminders, gifts, debts, tasks, tags) Endpoint: https://demo.mobcrm.au/mcp
- data_statistics - Get CRM statistics and overview (contact counts, activity counts, pending items, etc.) Endpoint: https://demo.mobcrm.au/mcp
- prime - IMPORTANT: Call this tool FIRST before any other tool to load essential CRM context. Returns a compact overview of the user's data: the current user's identity (name, email, contact_id), all tags, the 200 most recently updated contacts (id, name, and tag IDs), and the 10 most recent notes. This primes your context so you can reference contacts by name, understand the user's tag taxonomy, and see recent activity without needing separate list calls. Always call this at the start of a conversation. Endpoint: https://demo.mobcrm.au/mcp
- upcoming_birthdays - Find contacts with birthdays coming up within a time window or in a specific month. Returns contacts sorted by soonest birthday first, with age calculations when available. Endpoint: https://demo.mobcrm.au/mcp
- global_search - Search across all entity types (contacts, notes, activities, life events, gifts, tasks, reminders, debts, relationships, contact methods, addresses, custom fields) in a single query. Returns grouped results by entity type with snippets and contact context. Endpoint: https://demo.mobcrm.au/mcp
- contacts_needing_attention - Find contacts you haven't interacted with recently - the "who am I neglecting?" query. Returns contacts sorted by staleness (longest since last interaction first). Contacts with zero interactions are included and sorted first. Endpoint: https://demo.mobcrm.au/mcp
- upcoming_reminders - Find upcoming and overdue reminders across all contacts. Returns reminders sorted by date (overdue first, then soonest upcoming). Endpoint: https://demo.mobcrm.au/mcp
- batch_create_contacts - Create multiple contacts in one call. Max 50 items per batch. Runs atomically - if any item fails, the entire batch is rolled back. Endpoint: https://demo.mobcrm.au/mcp
- batch_tag_contacts - Apply a tag to multiple contacts in one call. Max 50 contacts per batch. Creates the tag if it doesn't exist. Runs atomically - if any item fails, the entire batch is rolled back. Endpoint: https://demo.mobcrm.au/mcp
- batch_create_activities - Create multiple activities/interactions in one call. Max 50 items per batch. Runs atomically - if any item fails, the entire batch is rolled back. Endpoint: https://demo.mobcrm.au/mcp
- manage_settings - View or update your personal settings (timezone, birthday reminder preferences).
• action="get": View current settings
• action="update": Update settings. Optional fields: timezone (IANA timezone like "America/New_York"), birthday_reminder_offsets (array of day offsets like [0,7,30] where 0=day-of, 7=week-before), reminder_offsets (array of day offsets like [0,7,30] for advance notice on custom reminders), birthday_reminder_time (HH:MM 24-hour format for when to send reminders) Endpoint: https://demo.mobcrm.au/mcp
- manage_push_notifications - Open a page to manage push notification subscriptions in your browser. Enables/disables web push notifications for birthday reminders and other alerts. Endpoint: https://demo.mobcrm.au/mcp

## Resources
Not captured

## Prompts
- daily-briefing - Daily Briefing Get your morning CRM overview: upcoming reminders, birthdays, pending tasks, unread notifications, and unsettled debts.
- prepare-for-meeting - Prepare for Meeting Get a comprehensive dossier on a contact before meeting them: profile, recent activity, notes, relationships, food preferences, and pending items. Arguments: contact_name
- log-interaction - Log Interaction Quickly log an interaction from a natural language description. Parses who, what, when, and where into a structured activity. Arguments: description
- add-new-contact - Add New Contact Intelligently onboard a new contact from freeform text - parses name, phone, email, social, birthday, work info, tags, relationships, and more. Arguments: info
- gift-ideas - Gift Ideas Brainstorm personalized gift ideas for a contact based on their preferences, interests, history, and upcoming occasions. Arguments: contact_name
- relationship-summary - Relationship Summary Get a relationship health check for a contact: interaction frequency, last contact, communication patterns, and suggestions. Arguments: contact_name
- weekly-review - Weekly Review End-of-week reflection: activities logged, tasks completed, new contacts, and contacts who may need attention.
- find-connections - Find Connections Search your network for people matching a specific need, skill, industry, or topic. Arguments: query

## Metadata
- Owner: io.github.benkaiser
- Version: 0.1.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Aug 3, 2026
- Source: https://registry.modelcontextprotocol.io
