MCP Prompts

Prompts are reusable query templates that help users effectively search and retrieve vCons. They provide guided workflows for common search patterns.

Overview

The vCon MCP Server provides 9 prompt templates:

  1. find_by_exact_tags - Exact tag matching

  2. find_by_semantic_search - AI-powered meaning search

  3. find_by_keywords - Keyword/phrase search

  4. find_recent_by_topic - Recent conversations by topic

  5. find_by_customer - Search by party/customer

  6. discover_available_tags - Explore available tags

  7. complex_search - Multi-criteria searches

  8. find_similar_conversations - Find similar vCons

  9. help_me_search - Query strategy guidance


Prompt Definitions

find_by_exact_tags

Find vCons using exact tag matches for precise queries.

Arguments:

  • tag_criteria (required): Natural language description of tags to match

    • Examples: "angry customers", "high priority sales", "department support"

  • date_range (optional): Date range description

    • Examples: "from June", "last week", "Q1 2024"

Best For:

  • Queries with known categories

  • Filtering by metadata

  • Precise department/priority/status matching

Example Usage:

Strategy:

  1. Parse tag criteria to identify key-value pairs

  2. Convert date range to ISO 8601

  3. Use search_by_tags tool

  4. Handle exact matching (no fuzzy logic)


Find vCons using AI-powered semantic search to understand meaning and intent.

Arguments:

  • search_description (required): Natural language description

    • Examples: "angry customers", "billing disputes", "positive feedback"

  • date_range (optional): Date range description

Best For:

  • Concept-based queries

  • Finding similar meanings

  • Natural language questions

  • Fuzzy matching needs

Example Usage:

Strategy:

  1. Understand intent (AI embeddings)

  2. Find related concepts and synonyms

  3. Use search_vcons_semantic tool

  4. Adjust similarity threshold as needed


find_by_keywords

Find vCons containing specific keywords or phrases.

Arguments:

  • keywords (required): Keywords or phrases to search for

    • Examples: "refund", "billing issue", "technical support"

  • filters (optional): Additional filters (tags, dates, parties)

Best For:

  • Exact word matching

  • Specific terminology

  • Phrase searches

  • ID or code lookups

Example Usage:

What Gets Searched:

  • ✅ Subject lines

  • ✅ Dialog bodies

  • ✅ Analysis bodies

  • ✅ Party information

  • ❌ Attachments (not indexed)

Strategy:

  1. Extract specific keywords

  2. Parse additional filters

  3. Use search_vcons_content tool

  4. Review relevance scores and snippets


find_recent_by_topic

Find recent vCons filtered by topic or category.

Arguments:

  • topic (required): Topic or category

    • Examples: "support", "sales", "billing"

  • timeframe (optional): Recency timeframe

    • Examples: "today", "this week", "last 7 days", "this month"

    • Default: "recent" (last 30 days)

Best For:

  • Dashboard views

  • Recent activity monitoring

  • Time-sensitive queries

  • Category browsing

Example Usage:

Strategy:

  1. Convert timeframe to date range

  2. Determine if topic is tag or concept

  3. Choose appropriate search tool

  4. Apply date filtering


find_by_customer

Find all vCons involving a specific customer, party, or participant.

Arguments:

  • party_identifier (required): Customer/party identifier

  • date_range (optional): Date range to filter

Best For:

  • Customer history lookup

  • Party-specific searches

  • Contact tracing

  • Relationship mapping

Example Usage:

Search Behavior:

  • party_name: Case-insensitive partial match

  • party_email: Exact match

  • party_tel: Exact match

Strategy:

  1. Identify party type (email/phone/name)

  2. Use search_vcons with appropriate filter

  3. Show all parties in each conversation

  4. Suggest follow-up actions


discover_available_tags

Discover what tags are available in the system for filtering.

Arguments:

  • tag_category (optional): Focus on specific tag category

    • Examples: "department", "priority", "sentiment"

Best For:

  • Exploring data

  • Understanding tag schema

  • Planning searches

  • Documentation

Example Usage:

Strategy:

  1. Use get_unique_tags tool

  2. Organize by category

  3. Show usage counts

  4. Suggest example searches


Perform complex searches combining multiple criteria: tags, keywords, dates, and semantic meaning.

Arguments:

  • search_criteria (required): Complete search description

    • Example: "high-priority sales calls from Q1 mentioning pricing"

Best For:

  • Multi-dimensional queries

  • Business intelligence

  • Complex filtering

  • Advanced searches

Example Usage:

Strategy:

  1. Parse criteria into components (tags, dates, keywords, concepts)

  2. Choose best search strategy

  3. Build comprehensive query

  4. Refine results as needed


find_similar_conversations

Find conversations similar to a specific vCon or topic.

Arguments:

  • reference (required): vCon UUID or topic description

  • limit (optional): Number of results (default: 10)

Best For:

  • Similar issue lookup

  • Pattern discovery

  • Related conversation finding

  • Contextual search

Example Usage:

Strategy:

  1. Determine if reference is UUID or description

  2. Extract or generate embedding

  3. Use search_vcons_semantic with similarity threshold

  4. Adjust threshold for precision vs recall


Get guidance on the best way to search for vCons based on your needs.

Arguments:

  • what_you_want (required): Description of what you're trying to find

Best For:

  • New users

  • Complex queries

  • Strategy planning

  • Tool selection

Example Usage:

Decision Tree:

Query Type
Recommended Tool

Exact tag values

search_by_tags

Specific keywords

search_vcons_content

Natural language

search_vcons_semantic

Mixed criteria

search_vcons_hybrid

Party information

search_vcons (party filters)

Date ranges

Any tool + date filters


Using Prompts

Claude Desktop

Prompts appear in the prompt selector:

Custom MCP Client


Prompt Strategy Guide

When to Use Each Prompt

Query Analysis Flow


Examples by Use Case

Customer Service

Sales

Analytics


Best Practices

1. Start Simple

Begin with specific prompts before moving to complex searches.

2. Discover First

Use discover_available_tags to understand your data before searching.

3. Refine Iteratively

Start broad, then narrow based on results.

4. Combine Filters

Use date ranges with every search for better performance.

5. Use Right Tool

Let prompts guide you to the appropriate search tool.


Next Steps

Last updated