Mailchimp (alien-lifestyles) MCP Server

@alien-lifestyles/mailchimp-mcp npm v0.4.1

Published by @alien-lifestyles — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

The only local-first, AI-native Mailchimp assistant. Get CSM intelligence, marketing analytics, and campaign execution—all through Claude Desktop conversations. Free read-only tier available. Upgrade for full automation.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 100 − adoption risk = 93/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 9

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([mc_listFiles]) and tools that can send data out ([mc_getWebhook, mc_uploadFile, mc_createWebhook, mc_updateWebhook, mc_deleteWebhook]) are exposed together. An agent can move private data to the sink.

Evidence: sources [mc_listFiles] → sinks [mc_getWebhook, mc_uploadFile, mc_createWebhook, mc_updateWebhook, mc_deleteWebhook]

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow mc_listFiles → mc_getWebhook

high Shell/command execution in server code (dist/index.js)MTC-SRC-002

In the server's implementation (`dist/index.js:1954`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: spawn } = await import("child_process"); const { platform: platform2 } = await import("os"); const { existsS

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/index.js

high Shell/command execution in server code (dist/setup/server.js)MTC-SRC-002

In the server's implementation (`dist/setup/server.js:82`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: execSync } = __require("child_process"); try { const listOutput = execSync("npm list -g @alien-lifestyles/mail

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/setup/server.js

medium Unconstrained URL/host parameter "url" on "mc_createWebhook"MTC-CAP-007

Tool "mc_createWebhook" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool mc_createWebhook · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "mc_updateWebhook"MTC-CAP-007

Tool "mc_updateWebhook" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool mc_updateWebhook · inputSchema.properties.url

low Shell/command execution in packaging/dev tooling (scripts/installer.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/installer.js:14`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: execSync, spawn } from 'child_process'; import { existsSync } from 'fs'; import { join } from 'path'; import { fileURLTo

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server scripts/installer.js

low Shell/command execution in packaging/dev tooling (scripts/post-install-sync.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/post-install-sync.js:17`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname } from 'path'; const __fi

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server scripts/post-install-sync.js

low Shell/command execution in packaging/dev tooling (scripts/setup-cli.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/setup-cli.js:11`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server scripts/setup-cli.js

low Shell/command execution in packaging/dev tooling (scripts/sync-from-web.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/sync-from-web.js:134`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: spawn } = await import('child_process'); const { promisify } = await import('util'); // For now, implement

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server scripts/sync-from-web.js

Tools 166

Each tool and what it can reach — statically extracted from the published source.

  • mc_createWebhooknetwork egress
  • mc_deleteWebhooknetwork egress
  • mc_getWebhooknetwork egress
  • mc_listFilesreads sensitive data
  • mc_updateWebhooknetwork egress
  • mc_uploadFilenetwork egress
  • account-health-checkno sensitive capability
  • churn-risk-analysisno sensitive capability
  • feature-adoptionno sensitive capability
  • list-healthno sensitive capability
Show 156 more tools ↓
  • marketer-campaign-benchmarksno sensitive capability
  • marketer-content-analysisno sensitive capability
  • marketer-quarterly-performanceno sensitive capability
  • mc_addMemberEventno sensitive capability
  • mc_addNoteToMemberno sensitive capability
  • mc_addTagToMemberno sensitive capability
  • mc_archiveAutomationno sensitive capability
  • mc_archiveMemberno sensitive capability
  • mc_cancelCampaignno sensitive capability
  • mc_createAudienceno sensitive capability
  • mc_createBatchOperationno sensitive capability
  • mc_createCampaignno sensitive capability
  • mc_createFileFolderno sensitive capability
  • mc_createInterestno sensitive capability
  • mc_createLandingPageno sensitive capability
  • mc_createMemberno sensitive capability
  • mc_createMergeFieldno sensitive capability
  • mc_createSegmentno sensitive capability
  • mc_createStoreno sensitive capability
  • mc_createStoreCartno sensitive capability
  • mc_createStoreCustomerno sensitive capability
  • mc_createStoreOrderno sensitive capability
  • mc_createStoreProductno sensitive capability
  • mc_createSurveyno sensitive capability
  • mc_createTagno sensitive capability
  • mc_createTemplateno sensitive capability
  • mc_createTemplateFolderno sensitive capability
  • mc_createVerifiedDomainno sensitive capability
  • mc_deleteAudienceno sensitive capability
  • mc_deleteAutomationEmailno sensitive capability
  • mc_deleteCampaignno sensitive capability
  • mc_deleteFileno sensitive capability
  • mc_deleteFileFolderno sensitive capability
  • mc_deleteInterestno sensitive capability
  • mc_deleteInterestCategoryno sensitive capability
  • mc_deleteLandingPageno sensitive capability
  • mc_deleteMemberno sensitive capability
  • mc_deleteMergeFieldno sensitive capability
  • mc_deleteNoteno sensitive capability
  • mc_deleteSegmentno sensitive capability
  • mc_deleteStoreno sensitive capability
  • mc_deleteStoreCartno sensitive capability
  • mc_deleteStoreCustomerno sensitive capability
  • mc_deleteStoreOrderno sensitive capability
  • mc_deleteStoreProductno sensitive capability
  • mc_deleteSurveyno sensitive capability
  • mc_deleteTagno sensitive capability
  • mc_deleteTemplateno sensitive capability
  • mc_deleteTemplateFolderno sensitive capability
  • mc_deleteVerifiedDomainno sensitive capability
  • mc_getAbuseReportno sensitive capability
  • mc_getAccountno sensitive capability
  • mc_getAudienceno sensitive capability
  • mc_getAutomationno sensitive capability
  • mc_getAutomationEmailno sensitive capability
  • mc_getBatchOperationno sensitive capability
  • mc_getCampaignno sensitive capability
  • mc_getCampaignClickDetailsno sensitive capability
  • mc_getCampaignContentno sensitive capability
  • mc_getCampaignReportno sensitive capability
  • mc_getConnectedSiteno sensitive capability
  • mc_getConversationno sensitive capability
  • mc_getFileno sensitive capability
  • mc_getFileFolderno sensitive capability
  • mc_getInterestno sensitive capability
  • mc_getInterestCategoryno sensitive capability
  • mc_getLandingPageno sensitive capability
  • mc_getListGrowthHistoryno sensitive capability
  • mc_getMemberno sensitive capability
  • mc_getMemberActivityno sensitive capability
  • mc_getMergeFieldno sensitive capability
  • mc_getSegmentno sensitive capability
  • mc_getStoreno sensitive capability
  • mc_getStoreCartno sensitive capability
  • mc_getStoreCustomerno sensitive capability
  • mc_getStoreOrderno sensitive capability
  • mc_getStoreProductno sensitive capability
  • mc_getSurveyno sensitive capability
  • mc_getSurveyResponseno sensitive capability
  • mc_getTagno sensitive capability
  • mc_getTemplateno sensitive capability
  • mc_getTemplateFolderno sensitive capability
  • mc_getVerifiedDomainno sensitive capability
  • mc_listAbuseReportsno sensitive capability
  • mc_listAudienceActivityno sensitive capability
  • mc_listAudiencesno sensitive capability
  • mc_listAutomationEmailsno sensitive capability
  • mc_listAutomationsno sensitive capability
  • mc_listBatchOperationsno sensitive capability
  • mc_listCampaignsno sensitive capability
  • mc_listCampaignSubscribersno sensitive capability
  • mc_listConnectedSitesno sensitive capability
  • mc_listConversationMessagesno sensitive capability
  • mc_listConversationsno sensitive capability
  • mc_listFileFoldersno sensitive capability
  • mc_listInterestCategoriesno sensitive capability
  • mc_listInterestsno sensitive capability
  • mc_listLandingPagesno sensitive capability
  • mc_listLocationsno sensitive capability
  • mc_listMemberEventsno sensitive capability
  • mc_listMemberNotesno sensitive capability
  • mc_listMembersno sensitive capability
  • mc_listMergeFieldsno sensitive capability
  • mc_listReportsno sensitive capability
  • mc_listSegmentMembersno sensitive capability
  • mc_listSegmentsno sensitive capability
  • mc_listStoreCartsno sensitive capability
  • mc_listStoreCustomersno sensitive capability
  • mc_listStoreOrdersno sensitive capability
  • mc_listStoreProductsno sensitive capability
  • mc_listStoresno sensitive capability
  • mc_listSurveyResponsesno sensitive capability
  • mc_listSurveysno sensitive capability
  • mc_listTagsno sensitive capability
  • mc_listTemplateFoldersno sensitive capability
  • mc_listTemplatesno sensitive capability
  • mc_listVerifiedDomainsno sensitive capability
  • mc_listWebhooksno sensitive capability
  • mc_openConfigno sensitive capability
  • mc_pauseAutomationno sensitive capability
  • mc_pauseAutomationEmailno sensitive capability
  • mc_pauseCampaignno sensitive capability
  • mc_pingno sensitive capability
  • mc_publishLandingPageno sensitive capability
  • mc_removeTagFromMemberno sensitive capability
  • mc_replicateCampaignno sensitive capability
  • mc_resumeCampaignno sensitive capability
  • mc_scheduleCampaignno sensitive capability
  • mc_sendCampaignno sensitive capability
  • mc_sendDomainVerificationEmailno sensitive capability
  • mc_setCampaignContentno sensitive capability
  • mc_startAutomationno sensitive capability
  • mc_startAutomationEmailno sensitive capability
  • mc_testCampaignno sensitive capability
  • mc_unpublishLandingPageno sensitive capability
  • mc_unscheduleCampaignno sensitive capability
  • mc_unsubscribeMemberno sensitive capability
  • mc_updateAudienceno sensitive capability
  • mc_updateAutomationEmailno sensitive capability
  • mc_updateCampaignno sensitive capability
  • mc_updateInterestno sensitive capability
  • mc_updateInterestCategoryno sensitive capability
  • mc_updateLandingPageno sensitive capability
  • mc_updateMemberno sensitive capability
  • mc_updateMergeFieldno sensitive capability
  • mc_updateNoteno sensitive capability
  • mc_updateSegmentno sensitive capability
  • mc_updateStoreno sensitive capability
  • mc_updateStoreCartno sensitive capability
  • mc_updateStoreCustomerno sensitive capability
  • mc_updateStoreOrderno sensitive capability
  • mc_updateStoreProductno sensitive capability
  • mc_updateSurveyno sensitive capability
  • mc_updateTemplateno sensitive capability
  • monthly-summaryno sensitive capability
  • roi-assessmentno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v0.4.1 latest A 93/100 9 1.13.0 2026-09-07

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/alien-lifestyles-mailchimp-mcp/badge.svg)](https://mcptrustchecker.com/registry/alien-lifestyles-mailchimp-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/alien-lifestyles-mailchimp-mcp"><img src="https://mcptrustchecker.com/registry/alien-lifestyles-mailchimp-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/alien-lifestyles-mailchimp-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @alien-lifestyles/mailchimp-mcp --online

Use the free API → How scoring works

Other implementations of Mailchimp 7

Independent packages implementing the same tool, scanned with the same engine. Compare all 8 side by side →

More in Marketing & Social

Abyssfall: Operation Sunken Crown Remote
A
https://www.abyssfallgame.com/mcp

Official Abyssfall game info, newsletter double opt-in, and merch reservation tools.

Marketing & Social Score 100/100 0 findings Cap. Minimal
AdCritter for Developers Remote
A
https://mcp.adcritter.com/mcp/dev

AdCritter ads platform: docs, API reference, app scaffolding, and white-label integration.

Marketing & Social Score 100/100 0 findings Cap. Minimal
Adsense Source verified npm
A
@appsyogi/adsense-mcp-server

Google AdSense MCP Server - Monitor earnings, reports, and account health via Claude/AI

Marketing & Social Score 100/100 0 findings 29/wk Cap. Minimal
Andru Intelligence Source verified npm
A
mcp-server-andru-intelligence

Operational empathy for technical founders + PE/VC operators navigating high-stakes B2B interactions. 28 MCP tools + CLI: ICP scoring, persona simulation, battlecards, deal classification, prospect discovery, investor matching, founder wellness, plus mark

Marketing & Social Score 100/100 0 findings 70/wk Cap. Minimal
Bing Seo Source verified npm
A
bing-seo-mcp

MCP server for Bing Webmaster Tools — SEO site management, URL submission, sitemaps, stats, keywords

Marketing & Social Score 100/100 0 findings 19/wk Cap. Minimal
Brand Source verified npm
A
@primer/brand-mcp

MCP (Model Context Protocol) server that helps AI agents use Primer Brand (@primer/react-brand) correctly when building GitHub marketing and landing pages.

Marketing & Social Score 100/100 0 findings 791/wk Cap. Minimal