Skip to main content

Listmonk MCP Bridge

PyPI version Python versions License CI Docs Container Ruff mypy GitHub release Downloads

Connect Listmonk to AI agents so they can safely manage email lists, subscribers, campaigns, test sends, transactional emails, and performance reports.

Documentation: https://mnbro.github.io/listmonk-mcp-bridge/

What it does

listmonk-mcp-bridge lets MCP clients work with the Listmonk API through typed tools for subscribers, lists, campaigns, templates, media, analytics, imports, bounces and transactional messages.

It includes runtime confirmations for destructive actions, real email sends and sensitive reads.

Recommended tools for LLM agents / orchestrators

This MCP remains a generic Listmonk domain MCP. It does not orchestrate external systems, call other MCP servers, or hardcode external workflows. For full tool behavior and schemas, use the tool documentation and safeguards documentation.

Recommended for autonomous LLM/orchestrator use:

  • check_listmonk_health
  • get_mailing_lists
  • get_list_subscribers_tool
  • get_subscriber_context
  • audience_summary
  • personalization_fields_report
  • validate_message_personalization
  • campaign_risk_check
  • safe_test_campaign
  • safe_send_campaign
  • safe_schedule_campaign
  • safe_send_transactional_email
  • campaign_performance_summary
  • export_campaign_markdown
  • export_campaign_postmortem_markdown
  • export_engagement_events
  • export_subscriber_communication_summary
  • upsert_subscriber_profiles with dryRun=true before any non-dry-run execution

These tools are LLM-friendly because they return compact summaries, warnings and blockers; use guardrails for confirmations, risk checks, approvals and idempotency where relevant; avoid accidental sends; and are suitable building blocks for external business orchestrators.

Supervised / low-level only:

  • send_campaign
  • test_campaign
  • schedule_campaign
  • send_transactional_email
  • add_subscriber
  • update_subscriber
  • change_subscriber_status
  • manage_subscriber_lists
  • manage_subscriber_lists_by_query
  • delete_subscribers_by_query
  • blocklist_subscriber
  • blocklist_subscribers
  • blocklist_subscribers_by_query
  • remove_subscriber
  • remove_subscribers
  • create_campaign
  • update_campaign
  • update_campaign_status
  • archive_campaign
  • convert_campaign_content
  • replace_in_campaign_body
  • regex_replace_in_campaign_body
  • batch_replace_in_campaign_body
  • create_template
  • update_template
  • delete_template
  • set_default_template
  • create_mailing_list
  • update_mailing_list
  • delete_mailing_list
  • delete_mailing_lists
  • import_subscribers
  • upload_media_file
  • rename_media
  • delete_media_file
  • update_settings
  • reload_app

Some low-level tools have confirmation guards, but they are still closer to the raw Listmonk API. Prefer safe_* wrappers for LLM workflows. For content changes, preview and risk-check before mutating operations.

Recommended workflows

Campaign flow: check_listmonk_health -> audience_summary -> personalization_fields_report -> validate_message_personalization -> campaign_risk_check -> get_campaign_html_preview or export_campaign_markdown -> safe_test_campaign -> external approval if required -> safe_schedule_campaign or safe_send_campaign -> campaign_performance_summary -> export_campaign_postmortem_markdown.

Do not use send_campaign directly in an orchestrator. Do not use schedule_campaign directly unless there is an explicit low-level reason. Prefer safe_test_campaign before safe_send_campaign; when safe_send_campaign uses requireTestSend=true, provide testRecipients.

Transactional email flow: get_subscriber_context -> validate_message_personalization if subject/body are generated -> safe_send_transactional_email with confirmSend=false for a safety check -> safe_send_transactional_email with confirmSend=true only after an explicit decision. Use an idempotencyKey for recurring events, for example birthday-email:{subscriberId}:{year}.

Transactional data accepts object | null and may contain nested JSON. Some connector renderers show only example fields such as name and customMessage, but the schema keeps additionalProperties=true, so arbitrary template variables are allowed.

Subscriber sync flow: get_subscriber_context by email -> upsert_subscriber_profiles with dryRun=true -> inspect plannedCreated, plannedUpdated and errors -> run upsert_subscriber_profiles with dryRun=false only after external confirmation.

upsert_subscriber_profiles looks up subscribers by email. It needs the relevant Listmonk subscriber permissions, including subscribers:sql_query if SQL lookup is used. Email literals are quoted safely, including apostrophes. In production, use dryRun=true before any write.

Production safety model

  • Sensitive read tools require confirm_read.
  • Send tools require confirm_send.
  • Destructive tools require confirm.
  • Scheduling tools require confirm_send or confirmSchedule.
  • safe_* wrappers are preferred for LLM agents.
  • Approval metadata can block send/schedule even when confirmation is true.
  • idempotencyKey prevents duplicate transactional email sends.
  • Safe confirmed operations return an auditId.

License

This project is licensed under the PolyForm Internal Use License 1.0.0.

You may use and modify it for your own internal business operations, including commercial internal use. You may not redistribute it, resell it, sublicense it, or offer it as a productized service to third parties.

Install

Run directly with uvx:

uvx listmonk-mcp-bridge

Or install with pip:

pip install listmonk-mcp-bridge
listmonk-mcp-bridge

Configure

Required environment variables:

export LISTMONK_MCP_URL=https://listmonk.example.com
export LISTMONK_MCP_USERNAME=api-user
export LISTMONK_MCP_PASSWORD=your-api-token

Use a dedicated Listmonk API user and token. Do not use the default admin account in production.

MCP client config

{
  "mcpServers": {
    "listmonk-mcp-bridge": {
      "command": "uvx",
      "args": ["listmonk-mcp-bridge"],
      "env": {
        "LISTMONK_MCP_URL": "https://listmonk.example.com",
        "LISTMONK_MCP_USERNAME": "api-user",
        "LISTMONK_MCP_PASSWORD": "your-api-token"
      }
    }
  }
}

Docker

The Debian slim based container image is published to GitHub Container Registry:

docker run --rm -i \
  --env LISTMONK_MCP_URL=https://listmonk.example.com \
  --env LISTMONK_MCP_USERNAME \
  --env LISTMONK_MCP_PASSWORD \
  ghcr.io/mnbro/listmonk-mcp-bridge:latest

See the Docker documentation for MCP client configuration.

Development

uv sync --all-extras
uv run ruff check .
uv run pytest
uv run python -m mypy src tests
uv run mkdocs build --strict

Full setup, tool behavior, API coverage, client-specific configuration and security notes are in the documentation site.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

listmonk_mcp_bridge-0.4.29.tar.gz (150.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

listmonk_mcp_bridge-0.4.29-py3-none-any.whl (39.0 kB view details)

Uploaded Python 3

File details

Details for the file listmonk_mcp_bridge-0.4.29.tar.gz.

File metadata

  • Download URL: listmonk_mcp_bridge-0.4.29.tar.gz
  • Upload date:
  • Size: 150.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for listmonk_mcp_bridge-0.4.29.tar.gz
Algorithm Hash digest
SHA256 27fabe24eba19cd058bc08a4d8f503ee0cdb2168d16dbc453bc68138aef34ab6
MD5 bfdce61c0fe1a3ce754aaea934710d4d
BLAKE2b-256 3001a1c96bb9d4f42e2781171305843a83b10ed2f43b2315510516e08af8794f

See more details on using hashes here.

Provenance

The following attestation bundles were made for listmonk_mcp_bridge-0.4.29.tar.gz:

Publisher: publish.yml on mnbro/listmonk-mcp-bridge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file listmonk_mcp_bridge-0.4.29-py3-none-any.whl.

File metadata

File hashes

Hashes for listmonk_mcp_bridge-0.4.29-py3-none-any.whl
Algorithm Hash digest
SHA256 929eedc16ebe601f34dfd2ebbadaac056064250d1ca57988131f09aee3fe7eaa
MD5 a78af892c6e1b6296fcdbd20382a24f8
BLAKE2b-256 0956f4b4f40e66b6316f3db73bd1fb7366f4d6bc214871a990231214e17fb624

See more details on using hashes here.

Provenance

The following attestation bundles were made for listmonk_mcp_bridge-0.4.29-py3-none-any.whl:

Publisher: publish.yml on mnbro/listmonk-mcp-bridge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.4.34

2 files

0.4.33

2 files

0.4.32

2 files

0.4.31

2 files

0.4.30

2 files

This release

0.4.29 This release

2 files

0.4.28

2 files

0.4.27

2 files

0.4.26

2 files

0.4.25

2 files

0.4.24

2 files

0.4.23

2 files

0.4.22

2 files

0.4.21

2 files

0.4.20

2 files

0.4.19

2 files

0.4.18

2 files

0.4.17

2 files

0.4.16

2 files

0.4.15

2 files

0.4.14

2 files

0.4.13

2 files

0.4.12

2 files

0.4.11

2 files

0.4.10

2 files

0.4.9

2 files

0.4.8

2 files

0.4.7

2 files

0.4.6

2 files

0.4.5

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page