Skip to content
VS Code

meser10 mcp for VS Code

io.github.meser10/meser10-mcp

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

client:VS Code transport:stdio runtime:npm

Install meser10 mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "meser10-api-key",
      "description": "MESER10_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "meser10-user-id",
      "description": "MESER10_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "meser10-mode",
      "description": "MESER10_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "meser10-max-recipients",
      "description": "MESER10_MAX_RECIPIENTS",
      "password": true
    }
  ],
  "servers": {
    "meser10-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@meser10/mcp-server"
      ],
      "env": {
        "MESER10_API_KEY": "${input:meser10-api-key}",
        "MESER10_USER_ID": "${input:meser10-user-id}",
        "MESER10_MODE": "${input:meser10-mode}",
        "MESER10_MAX_RECIPIENTS": "${input:meser10-max-recipients}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

meser10 mcp in other clients