Use cases
Explore prompts and workflows for finding content and creating, updating, and sharing Digital Sales Rooms with Mindtickle MCP.
Prerequisites
- Connect your account: Connect your account if you use a managed AI client.
- Build a custom client: Configure authentication if you are building a custom client.
Use these example prompts after connecting to Mindtickle MCP. A single request may require several tool calls to find records, inspect their current state, and complete an action. See Supported tools for required scopes and tool behavior.
Example tasks
Section titled “Example tasks”Describe the task in plain language. Your AI client selects tools based on your prompt, its configuration, and the information available in the conversation.
| What you want to do | Example prompt |
|---|---|
| Find a deal | “Pull up the Acme Corp deal.” |
| Find a company | “Do we have an account for Acme Corp?” |
| Find a buyer contact | “Who’s my main contact at Acme Corp?” |
| Check an existing room | “Is there already a room set up for the Acme Corp deal?” |
| Review a room’s contents | “What’s in the room I shared with Acme Corp last month?” |
| Add an asset to a room | “Add the new pricing sheet to the room I shared with Acme Corp.” |
| Update a room’s guest list | “Add John’s manager to the Acme Corp room as a guest.” |
| Search Mindtickle content | “Find the latest battle card for competitor ABC.” |
| Chat with Seller Copilot | “What did Copilot tell me about handling pricing objections for Acme Corp?” |
See Supported tools for the available tools and required scopes. Adding an asset or updating a guest list can require lookup calls before the edit.
Multi-tool use cases
Section titled “Multi-tool use cases”These workflows combine tool calls to create and share a Digital Sales Room or update an existing one. Each call uses information from the conversation or a previous result.
Create and share a new room
Section titled “Create and share a new room”This example creates a room containing selected assets and emails an invitation to a prospect.
- You ask: “What were the action items from my last call with Acme Corp?” The client can ask
mindtickle_seller_copilot_askfor call context and follow-up items, such as sending a pitch deck or answering a security questionnaire. Seller Copilot draws on Call AI recordings available to the user. - You ask: “Show me assets I can share with Acme Corp.” The client uses
mindtickle_searchwithfetchAssets: trueto retrieve asset metadata, including the IDs needed for room creation. Example content includes security FAQs, ROI calculators, competitive comparisons, and pricing sheets. Select assets appropriate to share externally; the documented search parameters do not include an external-sharing filter. - You ask to share these assets in a room. The client calls
find_roomswith a free-textqueryto check whether a room already exists for that company, deal, or contact. - If no matching room exists, the client calls
create_roomto create a standalone room, not linked to a CRM record, passing the selected assets asasset_idsin that same call. Thecreate_roomtool requires at least one asset to create a room, so it can’t create an empty one first and add assets after.create_roomonly accepts pre-existing contact IDs, so no guest is added at this step. - The client calls
share_roomwith the guest’s email to send an invitation and return a buyer-facing link. If the guest isn’t already a contact,share_roomcreates one automatically as part of this call. You, as the creator, are added to the room as a guest with view access.
This sequence uses mindtickle_seller_copilot_ask, mindtickle_search, find_rooms, create_room, and share_room. For what each of these tools does and the scope it requires, see Supported tools.
Add an asset to an existing room
Section titled “Add an asset to an existing room”To add an asset to an existing room:
- You ask: “Add the new pricing sheet to the room I shared with Acme Corp.” The client calls
find_roomswith a free-textqueryto resolve the correct room by company or deal. - The client calls
edit_roomwith the selected room’s numericroom_id_int,add_assets: true, andassets_to_addcontaining the asset ID and name.
This sequence assumes the asset ID and name are already available. Otherwise, the client first uses mindtickle_search with fetchAssets: true to find the asset. The room lookup and update use find_rooms and edit_room. See Supported tools for what each tool does.
Tips for effective prompts
Section titled “Tips for effective prompts”- Name the company, deal, or contact specifically. “Pull up the Acme Corp deal” works better than “pull up my deal.”
- If your AI client asks a follow-up question, such as confirming a room title or a guest’s email, answer it directly. Your AI client’s own confirmation behavior determines when it asks.
- If a result does not match your intent, provide more detail, such as the company name or room title, before requesting another action.