Back to Browse

Meser10 MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Operate the Meser 10 email and SMS platform from any MCP client. Read-only by default.

About

Operate the Meser 10 email and SMS platform from any MCP client. Read-only by default.

Security Report

5.2
Moderate5.2Moderate Risk

A well-designed MCP server for the Meser10 email/SMS platform with strong security patterns. The server implements comprehensive safety gates (read/write/send/destructive modes), proper credential injection, and rigorous error handling. Credentials are never exposed to the model, and permissions are appropriately scoped to the platform's API. No malicious patterns, data exfiltration, or critical vulnerabilities detected. Supply chain analysis found 6 known vulnerabilities in dependencies (1 critical, 2 high severity). Package verification found 1 issue.

7 files analyzed · 10 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

API key issued in the Meser 10 UI under My Account, Advanced settings, API settings.Required

Environment variable: MESER10_API_KEY

Meser 10 account number. Not a secret. Optional: 17 of the 61 operations authenticate on the key alone, the other 44 need it.Optional

Environment variable: MESER10_USER_ID

Safety gate: read (default), write, send or destructive. Each level adds tools; send delivers to real recipients and spends credit.Optional

Environment variable: MESER10_MODE

Refuses any single send targeting more addresses than this cap.Optional

Environment variable: MESER10_MAX_RECIPIENTS

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-meser10-meser10-mcp": {
      "env": {
        "MESER10_MODE": "your-meser10-mode-here",
        "MESER10_API_KEY": "your-meser10-api-key-here",
        "MESER10_USER_ID": "your-meser10-user-id-here",
        "MESER10_MAX_RECIPIENTS": "your-meser10-max-recipients-here"
      },
      "args": [
        "-y",
        "@meser10/mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Meser10 MCP Server

Connect the Meser10 email & SMS platform to any MCP client (Claude, Cursor, or your own agent).

תיעוד בעברית, כולל התקנה מודרכת: https://www.meser10.co.il/features/mcp-server/

MCP Registry

Listed in the official MCP Registry since 19 September 2026 as io.github.meser10/meser10-mcp (v1.0.2, MIT). Verify independently, no account needed:

https://registry.modelcontextprotocol.io/v0/servers?search=meser10

Two Israeli email/SMS marketing platforms appear in the official registry. This is the only one of the two published as open source and installable as a package; the other is a remote endpoint with no repository and no package.

Tools are generated from the live WSDL. Nobody hand-writes 61 tool definitions here, which means the server covers every API capability by construction and does not drift when the platform ships a new operation.

Quick start

export MESER10_API_KEY=...      # issued in the Meser10 UI
export MESER10_USER_ID=...      # your account number - optional, see below
npx @meser10/mcp-server

MESER10_USER_ID is optional at start-up. 17 of the 61 operations are authenticated by the key alone; the other 44 carry an explicit account number, and those fail with a clear message if it is not set. Set it unless you know you only need the first group. The account number is an identifier, not a secret - it is visible in the Meser10 UI.

Claude Desktop / Claude Code:

{
  "mcpServers": {
    "meser10": {
      "command": "npx",
      "args": ["-y", "@meser10/mcp-server"],
      "env": { "MESER10_API_KEY": "...", "MESER10_USER_ID": "..." }
    }
  }
}

Safety model

The server starts read-only. Nothing that spends money, messages a real person, or deletes a record is reachable until you opt in.

MESER10_MODEAddsTools
read (default)the Get* family16
writecontacts, groups, campaign drafts+27
senddelivers to real recipients, spends credit+13
destructivepermanent deletes+5

Two more guards:

  • MESER10_MAX_RECIPIENTS (default 100) refuses any single send that targets more addresses than the cap. A model that misreads a prompt cannot mail your whole list.
  • Credentials are injected, never exposed. oLogin and iUserID are stripped from every tool schema and filled in by the server. A model cannot see, guess, or leak them. CLoginInfo does accept UserName/Password, and this server deliberately never populates them - ApiKey only.

The one thing to know about errors

Every operation returns HTTP 200, including failures. Success lives in the Result field of CCallResult, not in the status code. This server reads Result, throws on anything that is not Success or PartialSuccess, and attaches a remedy:

LoginFailed: bad key - MESER10_API_KEY was rejected. Reissue the key in the Meser10 UI and restart.

PartialSuccess is surfaced as a warning rather than silent success, because it means some records in a batch did not land.

Design notes

Legacy variants are hidden. The contract exposes five Ex/Ex2 families (15 operations for 5 capabilities). Offering all of them makes a model choose between near-identical tools and pick wrong. The richest variant is exposed; the rest are hidden behind MESER10_EXPOSE_LEGACY=true.

Names are written for callers. GetGroupsList is what the platform calls it. list_groups is what a developer reaches for. The underlying operation name is always in the description, so nothing is hidden.

Hungarian prefixes become type hints. saGroups is an array of strings, eLang is an enum, iUserID is an int. The generator uses that to produce better schemas and human titles.

Troubleshooting

LoginFailed on a key that worked five minutes ago. The platform blocks the calling IP after a few failed authentications, and the block is long - measured at over three and three quarter hours. It reports itself as Incorrect user name or password, which is indistinguishable from a wrong key, so the instinct to reissue the key and retry makes it worse: the new key is blocked too, because the block is not on the key.

If this happens: stop calling, wait, and do not put a retry loop around authentication. Never retry an auth failure automatically - retrying is what creates the block, and on a shared server it takes down every other integration sending from the same address.

NotEnoughPermissions. Either the key belongs to a different account than the MESER10_USER_ID you set, or that account is real but out of your key's reach. An account number the platform cannot resolve at all fails differently, as ApplicationError, so this message does mean the number exists.

A tool returns a status and no data. Fixed in 1.0.0. Upgrade.

PartialSuccess. Part of a batch did not land. The server surfaces it as a warning rather than silent success; check which records are missing before you retry the whole batch.

Support

support@meser10.co.il · 03-7440020 · Sunday to Thursday, 9:00-17:00 Israel time.

Include the operation name and the Result value you got back. Never include your API key, and if one has been shared anywhere, reissue it.

Development

npm install && npm run build
npm test            # 43 unit tests + 12 end-to-end tests over real MCP stdio

The e2e suite runs a local stand-in for the platform, so it needs no credentials and sends nothing.

Status

Verified against the production endpoint on 2026-09-12, in read mode: authentication with ApiKey only, tool listing, and four operations returning live data through the whole chain.

Also verified locally: WSDL parsing, schema generation, safety gate, envelope construction, credential injection, error mapping, recipient cap, and the MCP protocol over stdio.

Write, send and delete operations are implemented and covered by tests against a stand-in, and have deliberately never been executed against a live account by this project.

Reviews

No reviews yet

Be the first to review this server!