Marketing
nevent.ai
A marketing platform for events offering CRM, email marketing, SMS, AI chatbot, and audience insights.
ENDPOINT 1
https://mcp.nevent.ai/mcp
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.nevent-ai]
url = "https://mcp.nevent.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"nevent-ai": {
"type": "http",
"url": "https://mcp.nevent.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: nevent-ai
Remote MCP URL: https://mcp.nevent.ai/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": {
"nevent-ai": {
"url": "https://mcp.nevent.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"nevent-ai": {
"type": "http",
"url": "https://mcp.nevent.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "nevent-ai",
"transport": "streamable-http",
"url": "https://mcp.nevent.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://mcp.nevent.ai
MCP server metadata
- Name
- nevent-mcp
- Version
- 1.0.0
# Nevent MCP — Mental Model ## Tool categories - **Analytics (9 tools):** nevent_analytics_capabilities → nevent_analytics_table_schema → nevent_analytics_query | nevent_analytics_filter_values | nevent_campaign_report | nevent_segmentation_criteria | nevent_segment_preview | nevent_segment_execute | nevent_dimension_values - **Segments (4 tools):** nevent_list_segments | nevent_get_segment | nevent_create_segment | nevent_update_segment - **Campaigns (5 tools):** nevent_list_campaigns | nevent_get_campaign | nevent_get_campaign_insights | nevent_create_campaign | nevent_schedule_campaign - **Templates (8 tools):** nevent_list_templates | nevent_get_template | nevent_create_template | nevent_update_template | nevent_clone_template | nevent_rename_template | nevent_preview_template | nevent_send_test_template - **Deliverability (2 tools):** nevent_get_sending_profile | nevent_get_suppressions_summary - **Paid Media (11 tools):** nevent_paid_ads_status | nevent_paid_ads_health | nevent_list_paid_campaigns | nevent_get_paid_campaign_insights | nevent_paid_attribution | nevent_list_paid_ad_groups | nevent_get_paid_ad_group_comparative_stats | nevent_get_paid_ad_group_targeting | nevent_list_paid_ads | nevent_get_paid_ad_creative | nevent_get_paid_ad_group_insights - **Short URLs (9 tools):** nevent_list_short_urls | nevent_get_short_url | nevent_get_short_url_metrics | nevent_get_short_url_campaign_metrics | nevent_get_short_url_clicks | nevent_list_short_url_user_links | nevent_create_short_url | nevent_update_short_url | nevent_create_bulk_user_short_urls - **Multi-tenant (3 tools):** nevent_list_tenants | nevent_switch_tenant | nevent_reset_tenant - **Help (1 tool):** nevent_help ## Common workflows 1. **"How are my paid ads doing?"** → nevent_paid_ads_status → nevent_paid_ads_health → nevent_list_paid_campaigns → nevent_get_paid_campaign_insights → nevent_paid_attribution 2. **"Build a segment"** → nevent_segmentation_criteria → nevent_dimension_values (for values) → nevent_segment_preview → nevent_create_segment 3. **"Email campaign performance"** → nevent_list_campaigns(channel=EMAIL) → nevent_get_campaign_insights OR nevent_campaign_report 4. **"Compare data across tenants"** → nevent_list_tenants → nevent_switch_tenant → [query] → nevent_reset_tenant 5. **"What data is available?"** → nevent_analytics_capabilities → nevent_analytics_table_schema → nevent_analytics_query 6. **"Campaign link CTR"** → nevent_list_short_urls → nevent_get_short_url_campaign_metrics 7. **"Create per-user tracking links"** → nevent_create_short_url → nevent_create_bulk_user_short_urls → nevent_get_short_url_campaign_metrics ## MANDATORY: Analytics query rules - ALWAYS call nevent_analytics_table_schema BEFORE querying to discover exact field names. NEVER guess. - BOOLEAN fields: use operator "is_true" or "is_false". NEVER "eq" with "true"/"false". - Enum fields (state, status): check field description for valid values. ## Tenant switching (IMPORTANT) - Tenant comes from the JWT — it is STATEFUL for the whole session. - nevent_switch_tenant reissues the JWT; ALL subsequent tools use the new tenant. - SUPERADMIN: switch MUTATES the user record in the DB. ALWAYS call nevent_reset_tenant after cross-tenant work. - OWNER/ADMIN/STAFF: limited to your hierarchy subtree (max 3 levels deep). ## Error codes → LLM actions - `feature_gate_not_enrolled` (paid media): tenant not in pilot — tell user to contact admin. - `forbidden`: insufficient role — explain what role is needed. - `rate_limit_exceeded`: back off, retry later. retryAfter seconds may be in the message. - `operation_not_permitted`: tool blocked by operation mode (e.g. READ_ONLY blocks writes). - `not_found`: resource missing OR feature gate for paid media endpoints. ## Token economy Responses can be large. Prefer filtered/paginated queries over broad ones. Call nevent_help with a topic for detailed guidance on any category.
Known tools 59
nevent_analytics_capabilitiesDiscover available analytics tables and their summary metadata.
Inferred read-onlynevent_analytics_table_schemaGet the full column schema for a specific analytics table including column names, types, and descriptions.
Inferred read-onlynevent_analytics_filter_valuesGet distinct values available for a field in an analytics table.
Inferred read-onlynevent_campaign_reportGenerate a comprehensive analytics report for a single campaign.
Inferred read-onlynevent_segmentation_criteriaList all available audience segmentation criteria including their IDs, operators, and value types.
Inferred read-onlynevent_segment_previewPreview estimated audience size for a segment definition without saving it.
Inferred read-onlynevent_segment_executeExecute a segment definition and retrieve matching contacts with pagination.
Potential side effectsnevent_helpGet guidance when you are unsure which tool to call or how to handle an error.
Inferred read-onlynevent_list_tenantsList all Nevent tenants (clients) accessible to the authenticated user.
Inferred read-onlynevent_get_segmentRetrieve the complete filter definition of a specific segment (criteria stanzas, operators, values) along with its estimated contact count and metadata.
Inferred read-onlynevent_create_segmentCreate and persist a new audience segment from a filter definition.
Potential side effectsnevent_update_segmentModify an existing segment's name and/or filter definition.
Potential side effectsnevent_create_campaignCreate a new campaign draft (email, SMS, WhatsApp, push, or multi-channel).
Potential side effectsnevent_schedule_campaignSchedule an existing DRAFT campaign for delivery at a specific ISO-8601 datetime.
Inferred read-onlynevent_quote_campaignEstimate the credit cost and eligible audience of a campaign BEFORE sending it.
Inferred read-onlynevent_get_campaign_metricsGet the delivery and engagement counters nev-api holds for one campaign: totalRecipients, totalSent, totalDelivered, totalBounces, totalComplaints, totalOpens, uniqueOpens, totalClicks, uniqueClicks, unsubscribes, the derived rates (openRate, clickRate, clickToOpenRate, bounceRate, unsubscribeRate) and the conversion counters (carts, purchases, revenue).
Inferred read-onlynevent_list_campaign_recipientsList the individual recipients of a campaign and what happened to each message.
Potential side effectsnevent_list_campaignsCall this to discover existing campaigns before reporting on performance or scheduling new sends.
Inferred read-onlynevent_get_campaignRetrieve the complete record of a campaign: email subject and body HTML, sending profile, all delivery and engagement metrics (sent, delivered, opens, clicks, unsubscribes, bounces), and tracked links with click counts.
Potential side effectsnevent_get_campaign_insightsGet pre-computed AI analysis for a specific campaign: performance summary, detected anomalies (e.
Inferred read-onlynevent_list_templatesCall this to discover available email templates before creating a campaign.
Potential side effectsnevent_get_templateRetrieve the full content of an email template: MJML source, rendered HTML, tags, and usage metrics (how many campaigns used this template).
Potential side effectsnevent_create_templateCreate and persist a new email template with MJML or raw HTML content.
Potential side effectsnevent_update_templateUpdate an existing email template: change the name, MJML/HTML content, or tags.
Potential side effectsnevent_clone_templateClone an existing email template to create a duplicate as a starting point for a new campaign.
Potential side effectsnevent_rename_templateRename an email template without modifying its content (lightweight — no re-render triggered).
Potential side effectsnevent_preview_templatePreview a template with merge tags resolved against a sample user's profile.
Inferred read-onlynevent_send_test_templateSend a test email of the template to one or more email addresses via SES.
Potential side effectsnevent_get_sending_profileCall this before creating a campaign to verify the tenant is ready to send email.
Potential side effectsnevent_get_suppressions_summaryGet a deliverability health snapshot for the active tenant: total suppressed emails (hard bounces + complaints + manual unsubscribes), 30-day trend, and breakdown by suppression reason.
Inferred read-onlynevent_paid_ads_statusCheck if a paid ads provider account (meta, google, or tiktok) is connected to this tenant and when data was last synced.
Inferred read-onlynevent_list_paid_campaignsList all paid campaigns synced from a provider (meta, google, or tiktok).
Inferred read-onlynevent_get_paid_campaign_insightsGet daily performance metrics for a specific paid campaign.
Inferred read-onlynevent_paid_attributionGet the most business-focused view of paid ads: links campaigns to actual ticket sales and revenue via UTM matching.
Inferred read-onlynevent_list_paid_ad_groupsList ad groups (ad sets) for a paid ads provider, optionally filtered by campaign.
Inferred read-onlynevent_get_paid_ad_group_insightsGet daily performance metrics for a specific ad group (ad set).
Inferred read-onlynevent_get_paid_ad_group_comparative_statsCompare an ad group's performance metrics against the mean of its campaign sibling ad groups.
Inferred read-onlynevent_get_paid_ad_group_targetingGet the full audience targeting configuration for an ad group.
Inferred read-onlynevent_list_paid_adsList individual ads for a paid ads provider, optionally filtered by campaign and/or ad group.
Inferred read-onlynevent_get_paid_ad_creativeGet the creative content of a specific ad: copy (body, title, description, CTA), click URL, UTM params, and pre-signed S3 image/video URLs (TTL ~1 hour).
Inferred read-onlynevent_list_short_urlsList all short URLs for the current tenant with their tracking metrics (click count, last clicked).
Inferred read-onlynevent_get_short_urlGet complete details of a specific short URL including target URL, metadata, creation date, expiration, tags, and current click count.
Inferred read-onlynevent_get_short_url_metricsGet aggregated click analytics for a specific short URL over a time window (default 30 days).
Inferred read-onlynevent_get_short_url_campaign_metricsGet aggregated click metrics across a parent short URL and all its per-user variants.
Inferred read-onlynevent_get_short_url_clicksGet individual click event records for a specific short URL, ordered by most recent first.
Inferred read-onlynevent_list_short_url_user_linksList all per-user short URL variants created under a parent (campaign) short URL.
Inferred read-onlynevent_create_short_urlCreate a new short URL that redirects to the specified destination.
Potential side effectsnevent_create_bulk_user_short_urlsGenerate per-user short URL variants for an existing parent short URL.
Inferred read-onlynevent_list_short_url_destinationsList short links grouped by DESTINATION URL — one row per destination instead of one per link.
Inferred read-onlynevent_upload_imageUpload an image to the Nevent media library and get a CDN URL.
Potential side effectsnevent_list_imagesList all images stored in the Nevent media library for the current tenant.
Inferred read-onlynevent_delete_imagePermanently delete one or more images from the Nevent media library.
Potential side effectsCONNECT 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.nevent-mcp]
url = "https://mcp.nevent.ai"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"nevent-mcp": {
"type": "http",
"url": "https://mcp.nevent.ai"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: nevent-mcp
Remote MCP URL: https://mcp.nevent.ai
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": {
"nevent-mcp": {
"url": "https://mcp.nevent.ai"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"nevent-mcp": {
"type": "http",
"url": "https://mcp.nevent.ai"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "nevent-mcp",
"transport": "streamable-http",
"url": "https://mcp.nevent.ai"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.