MCP server intelligence profile

Salesforce Marketing Cloud MCP Server

Enables autonomous agents to segment audiences, manage subscribers, and trigger Journey Builder workflows in Salesforce Marketing Cloud through natural language

Local Onlyvinkius-labs
Awaiting current scanNpm · 1.0.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
6Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @mcp-listing/salesforce-marketing-mcp from npm

Install exact version 1.0.0. No verified executable entrypoint is available, so use the package documentation to launch it.

npm install --save-exact @mcp-listing/salesforce-marketing-mcp@1.0.0

Identity

Canonical slugsalesforce-marketing-cloud-mcp-c69b5a93DeploymentLocal Only
Canonical packagenpm:@mcp-listing/salesforce-marketing-mcpRepositoryvinkius-labs/salesforce-marketing-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@mcp-listing/salesforce-marketing-mcp1.0.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@mcp-listing/salesforce-marketing-mcp1.0.0CurrentSep 5, 20266 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
salesforce-marketing-mcpServer-reported name
1Capability groups
Aug 26, 2026Observed

Tools 6

ToolCategoryAnnotationsRisk
sf_add_campaign_member[INSTRUCTIONS] Creates a CampaignMember junction record linking a Lead or Contact to a Campaign. Provide campaignId and either contactId OR leadId (not both). Status defaults to "Sent" but can be set to "Responded", "Registered", etc. based on your campaign member statuses. Returns the created membership record. Add a lead or contact to a Salesforce marketing campaign for attribution tracking and engagement measurement.
Input schema
{
  "type": "object",
  "properties": {
    "campaignId": {
      "type": "string",
      "description": "Campaign ID"
    },
    "contactId": {
      "type": "string",
      "description": "Contact ID (provide either this OR leadId)"
    },
    "leadId": {
      "type": "string",
      "description": "Lead ID (provide either this OR contactId)"
    },
    "status": {
      "type": "string",
      "description": "Member status (default: Sent)"
    }
  },
  "required": [
    "campaignId"
  ]
}
Annotations
{
  "destructiveHint": false
}
Non-destructive
sf_campaign_members[INSTRUCTIONS] Retrieves CampaignMember junction records for a campaign. Returns member name, type (Lead or Contact), status (Sent/Responded/etc.), and response date. Use to see who is in a campaign, track engagement, or analyze campaign reach. Essential for campaign ROI and attribution analysis. Get all leads and contacts enrolled in a specific Salesforce campaign with their membership status and response dates. [READ-ONLY]
Input schema
{
  "type": "object",
  "properties": {
    "campaignId": {
      "type": "string",
      "description": "Campaign ID (18-char Salesforce ID)"
    },
    "limit": {
      "type": "number",
      "description": "Maximum results (default: 20)"
    }
  },
  "required": [
    "campaignId"
  ]
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false
}
Read onlyNon-destructive
sf_campaign_performance[INSTRUCTIONS] Runs aggregate SOQL on Campaign records grouped by Type. Returns the number of campaigns, total leads generated, total conversions, total budgeted cost, and actual cost per campaign type. Provides an instant ROI overview across all marketing channels. Use for marketing dashboard, channel-level performance comparison, or budget allocation analysis. Get aggregate marketing campaign performance — campaign counts, total leads, conversions, and costs grouped by campaign type. [READ-ONLY]
Input schema
{
  "type": "object",
  "properties": {}
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false
}
Read onlyNon-destructive
sf_campaigns_by_status[INSTRUCTIONS] Filters Campaign records by Status. Returns campaigns with lead/contact counts, budget, and conversion data. Use for questions like "which campaigns are currently running?" or "show completed campaigns with their results." Get Salesforce campaigns filtered by status — Planned, In Progress, Completed, or Aborted — with full metrics. [READ-ONLY]
Input schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Campaign status: Planned, In Progress, Completed, Aborted"
    },
    "limit": {
      "type": "number",
      "description": "Maximum results (default: 20)"
    }
  },
  "required": [
    "status"
  ]
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false
}
Read onlyNon-destructive
sf_create_campaign[INSTRUCTIONS] Creates a Campaign sObject. Name is required. Type: Email, Conference, Webinar, Trade Show, Public Relations, Advertisement, Banner Ads, Telemarketing. Status defaults to "Planned". Dates use YYYY-MM-DD. budgetedCost is the planned spend. Returns the created campaign with its Salesforce ID. Create a new marketing campaign in Salesforce with name, type, status, dates, description, and budget.
Input schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Campaign name"
    },
    "type": {
      "type": "string",
      "description": "Type: Email, Conference, Webinar, Advertisement, etc."
    },
    "status": {
      "type": "string",
      "description": "Status (default: Planned)"
    },
    "startDate": {
      "type": "string",
      "description": "Start date YYYY-MM-DD"
    },
    "endDate": {
      "type": "string",
      "description": "End date YYYY-MM-DD"
    },
    "description": {
      "type": "string",
      "description": "Campaign description"
    },
    "budgetedCost": {
      "type": "number",
      "description": "Planned budget amount"
    }
  },
  "required": [
    "name"
  ]
}
Annotations
{
  "destructiveHint": false
}
Non-destructive
sf_search_campaigns[INSTRUCTIONS] Queries the Campaign sObject. Returns campaign name, status (Planned/In Progress/Completed/Aborted), type (Email/Conference/Webinar/Advertisement), start/end dates, number of leads generated, contacts converted, budgeted cost, and actual cost. Use when the user asks about marketing initiatives, campaign performance, or budget spend. Search Salesforce marketing campaigns by name to find initiatives with status, type, budget, and lead/contact conversion metrics. [READ-ONLY]
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Campaign name keyword"
    },
    "limit": {
      "type": "number",
      "description": "Maximum results (default: 20)"
    }
  },
  "required": [
    "query"
  ]
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false
}
Read onlyNon-destructive

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Salesforce Marketing Cloud MCP Server questions

How do I install Salesforce Marketing Cloud MCP Server?

Install the selected package version with: npm install --save-exact @mcp-listing/salesforce-marketing-mcp@1.0.0

What tools does Salesforce Marketing Cloud MCP Server provide?

Salesforce Marketing Cloud MCP Server exposed 6 tools during independent protocol observation, including sf_add_campaign_member, sf_campaign_members, sf_campaign_performance, sf_campaigns_by_status, sf_create_campaign, sf_search_campaigns.

Is Salesforce Marketing Cloud MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Salesforce intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.