MCP Example Prompts
<!-- Prompts Section -->
<div class="px-4 py-16">
<div class="container mx-auto space-y-16">
<!-- Create and Modify Contacts -->
<section>
<h2 class="text-3xl font-bold font-poppins text-center mb-8">Contacts & Fields</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-blue-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Basic Listing</p>
<p class="text-gray-700 italic">"List my first 20 contacts. Make sure to include the email, first name, and last name."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-blue-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Contact Creation</p>
<p class="text-gray-700 italic">"Create a contact with email <b>[email protected]</b> and first name New"</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-blue-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Custom Fields</p>
<p class="text-gray-700 italic">"Create a custom field named 'New Custom Field' of type 'text'"</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-blue-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Field Values</p>
<p class="text-gray-700 italic">"Update field value with ID 123 for contact 456 to 'Updated Value'"</p>
</div>
</div>
</section>
<!-- CRM & Deal Management -->
<section>
<h2 class="text-3xl font-bold font-poppins text-center mb-8">CRM & Deal Management</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Pipeline Discovery</p>
<p class="text-gray-700 italic">"List all my deal pipelines and show me the Qualifications pipeline configuration."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Deal Creation</p>
<p class="text-gray-700 italic">"Create a new deal titled 'Enterprise Deal' for contact 123 with a value of $500. Put it in pipeline 1."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">CRM Insights</p>
<p class="text-gray-700 italic">"List all open deals (status 0) in stage 2 with title 'Able Hyena'."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Deal Notes</p>
<p class="text-gray-700 italic">"Create a note on deal number 6 with the text 'Call this customer ASAP'."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Bulk Ownership</p>
<p class="text-gray-700 italic">"Add owner id 6 to deals 1, 2, 3, 4, and 5."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-green-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Deal Activity</p>
<p class="text-gray-700 italic">"List the activity for deal with ID 1 to see its status history."</p>
</div>
</div>
</section>
<!-- Automation & Campaigns -->
<section>
<h2 class="text-3xl font-bold font-poppins text-center mb-8">Automations & Campaigns</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-purple-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Engagement</p>
<p class="text-gray-700 italic">"List my email activities, making sure to include the subject and from address."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-purple-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Campaign Links</p>
<p class="text-gray-700 italic">"Get all tracked links for campaign with ID 123."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-purple-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Automation Entry</p>
<p class="text-gray-700 italic">"Add contact with ID 64 to automation with ID 2."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-purple-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Status Check</p>
<p class="text-gray-700 italic">"Show me all active automations and who is currently enrolled in them."</p>
</div>
</div>
</section>
<!-- Tags and List Management -->
<section>
<h2 class="text-3xl font-bold font-poppins text-center mb-8">Tags & List Organization</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-orange-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Tag Creation</p>
<p class="text-gray-700 italic">"Create a tag named 'test-tag' for my high-value segment."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-orange-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">List Management</p>
<p class="text-gray-700 italic">"Create a list named 'Test Newsletter' with my sender compliance URL."</p>
</div>
<div class="p-6 bg-white rounded-lg shadow-md border-l-4 border-orange-500">
<p class="text-sm text-gray-500 mb-2 font-bold uppercase">Permissions</p>
<p class="text-gray-700 italic">"Associate list 123 with user group 5 so my sales team can see it."</p>
</div>
</div>
</section>
</div>
</div>
<!-- Footer -->
<footer class="py-16 bg-dusk">
<div class="container flex flex-col items-center justify-between mx-auto space-y-16 md:flex-row md:space-y-0 px-4">
<div class="flex flex-col items-center justify-between space-y-8 text-lg font-poppins md:flex-row md:space-y-0 md:space-x-14 text-grayishBlue">
<img src="https://files.readme.io/dd8a403-ActiveCampaign_Logo_White.png" alt="ActiveCampaign" class="mb-1" width="220" />
<a href="https://www.activecampaign.com/about/careers" class="font-light uppercase hover:text-blue-400">Careers</a>
<a href="https://community.activecampaign.com/" class="font-light uppercase hover:text-blue-400">Community</a>
<a href="https://developers.activecampaign.com/reference/overview" class="font-light uppercase hover:text-blue-400">Documentation</a>
<div class="flex space-x-10">
<a href="https://www.facebook.com/activecampaign/"><img src="https://files.readme.io/ead400e-icon-facebook.svg" alt="FB" class="h-6"></a>
<a href="https://twitter.com/ActiveCampaign"><img src="https://files.readme.io/32e0686-icon-twitter.svg" alt="Twitter" class="h-6"></a>
</div>
</div>
</div>
</footer>