1. Contacts & Web Discovery

Full contact CRUD, autonomous web contact discovery from venue/festival sites, and mail alias management.

  • Chema Rodriguez
    Author
    by Chema Rodriguez
    2 months ago
  • Your Industry CRM via MCP

    Group 14 transforms the Chatmu MCP into a full Customer Relationship Management system for the music industry. Your AI agent can manage contacts, discover booking emails from websites, and handle your professional email identity — all programmatically.


    Contact Management


    Tool: networking_get_contacts

    Description: Searches and lists contacts in your networking agenda. Filter by name or role (curator, media, artist, manager, promoter, label, etc.).

    {\n  "query": "Spotify"\n}

    Tool: networking_create_contact

    Description: Creates a new contact with full industry metadata. Supports Spotify URLs, Instagram handles, venue names, phone numbers, websites, genres, and notes.

    {\n  "name": "Maria Curator",\n  "email": "[email protected]",\n  "role": "curator",\n  "spotifyUrl": "https://open.spotify.com/playlist/...",\n  "instagramUrl": "https://instagram.com/maria",\n  "genre": "latin",\n  "notes": "Met at CDMX music conference"\n}

    Tool: networking_update_contact

    Description: Edits an existing contact's details. All fields optional — only send what changed.

    {\n  "id": "contact-uuid",\n  "notes": "Now working at Warner Music"\n}

    Tool: networking_delete_contact

    Description: Permanently removes a contact from your agenda.

    {\n  "id": "contact-uuid"\n}



    Web Contact Discovery


    Tool: extract_contacts_from_web

    Description: Autonomously scans venue or festival websites to discover booking and contact email addresses. The agent crawls Contact, Booking, and About pages to extract relevant emails with department tags and relevance scores.

    {\n  "website_url": "https://example-venue.com",\n  "max_pages": 3\n}

    Output: Returns discovered email addresses with department labels (booking, management, press) and a relevance score indicating how likely the contact is to be useful.




    Mail Alias Management


    Tool: networking_get_mail_alias

    Description: Checks if your workspace has an official email handle configured for outbound communication.


    Tool: networking_claim_mail_alias

    Description: Claims a unique email handle for your workspace (e.g., [email protected]). This becomes your sender identity for all networking emails.

    {\n  "handle": "yourname"\n}