← Registry

Productivity

mobcrm.au

Manages contacts with full CRUD operations and retrieval of associated details like addresses, preferences, and activities.

2 endpoints42 known toolsFirst detected August 3, 2026Last detected September 3, 2026

ENDPOINT 1

https://mobcrm.au/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.mobcrm-au]
url = "https://mobcrm.au/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "mobcrm-au": {
      "type": "http",
      "url": "https://mobcrm.au/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: mobcrm-au
Remote MCP URL: https://mobcrm.au/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "mobcrm-au": {
      "url": "https://mobcrm.au/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "mobcrm-au": {
      "type": "http",
      "url": "https://mobcrm.au/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "mobcrm-au bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "mobcrm-au",
  "transport": "streamable-http",
  "url": "https://mobcrm.au/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://demo.mobcrm.au/mcp

No auth detected

MCP server metadata

Name
mob-crm
Version
0.1.0
Capabilities
prompts.listChangedtools.listChanged

Known tools 42

contact_create

Create a new contact with basic info

Potential side effects
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

Inferred read-only
contact_update

Update contact fields

Potential side effects
contact_delete

Soft-delete a contact (can be restored later)

Potential side effects
contact_restore

Restore a soft-deleted contact

Inferred read-only
contact_list

List contacts with optional filters (status, favorite, company, tag, search).

Inferred read-only
contact_merge

Merge two contacts into one.

Inferred read-only
contact_find_duplicates

Scan for potential duplicate contacts using name, email, and phone matching.

Potential side effects
contact_method_manage

Add, update, or remove a contact method (email, phone, social handle, etc.

Potential side effects
address_manage

Add, update, or remove an address for a contact

Potential side effects
food_preferences_get

Get food preferences for a contact (dietary restrictions, allergies, favorites, dislikes)

Inferred read-only
food_preferences_upsert

Set or update food preferences for a contact.

Potential side effects
custom_field_manage

Add, update, or remove a custom field on a contact

Potential side effects
relationship_manage

Add, update, remove, or list relationships between contacts.

Potential side effects
note_manage

Create, update, delete, or restore a note for a contact.

Potential side effects
note_list

List and search notes.

Inferred read-only
tag_manage

Manage tags and contact tagging.

Inferred read-only
activity_manage

Create, get, update, delete, or restore an activity/interaction.

Potential side effects
activity_list

List activities, optionally filtered by contact or type.

Inferred read-only
activity_type_manage

List, create, update, or delete custom activity types

Potential side effects
life_event_manage

Create, list, update, delete, or restore life events for a contact.

Potential side effects
contact_timeline

Get the unified timeline for a contact (activities, life events, notes, etc.

Inferred read-only
reminder_manage

Create, list, update, complete, snooze, delete, or restore reminders.

Potential side effects
notification_list

List notifications (newest first)

Inferred read-only
notification_create

Create a custom notification

Potential side effects
notification_read

Mark notification(s) as read.

Inferred read-only
gift_manage

Create, update, delete, or restore a gift for a contact.

Potential side effects
gift_list

List gifts, optionally filtered by contact, status, or direction.

Inferred read-only
debt_manage

Create, list, update, settle, delete, restore, or summarize debts.

Potential side effects
task_manage

Create, list, update, complete, delete, or restore tasks.

Potential side effects
data_export

Export all CRM data as a JSON object (contacts, relationships, notes, activities, life events, reminders, gifts, debts, tasks, tags)

Inferred read-only
data_statistics

Get CRM statistics and overview (contact counts, activity counts, pending items, etc.

Inferred read-only
prime

IMPORTANT: Call this tool FIRST before any other tool to load essential CRM context.

Inferred read-only
upcoming_birthdays

Find contacts with birthdays coming up within a time window or in a specific month.

Inferred read-only
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.

Inferred read-only
contacts_needing_attention

Find contacts you haven't interacted with recently - the "who am I neglecting?

Inferred read-only
upcoming_reminders

Find upcoming and overdue reminders across all contacts.

Inferred read-only
batch_create_contacts

Create multiple contacts in one call.

Potential side effects
batch_tag_contacts

Apply a tag to multiple contacts in one call.

Inferred read-only
batch_create_activities

Create multiple activities/interactions in one call.

Potential side effects
manage_settings

View or update your personal settings (timezone, birthday reminder preferences).

Potential side effects
manage_push_notifications

Open a page to manage push notification subscriptions in your browser.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.mob-crm]
url = "https://demo.mobcrm.au/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mob-crm": {
      "type": "http",
      "url": "https://demo.mobcrm.au/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mob-crm
Remote MCP URL: https://demo.mobcrm.au/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "mob-crm": {
      "url": "https://demo.mobcrm.au/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "mob-crm": {
      "type": "http",
      "url": "https://demo.mobcrm.au/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "mob-crm",
  "transport": "streamable-http",
  "url": "https://demo.mobcrm.au/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for mobcrm.au was fetched 2026-08-24T06:13:21.308Z.

Trust status Neutral

mobcrm.au is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.