PluginBench
MCP Server
Active

smbCloud Mail & Auth MCP Server

io.github.smbcloudXYZ/smbcloud-cli

What is the smbCloud Mail & Auth MCP server?

Email infrastructure and authentication for developers: domains, inbox routes, auth apps, deploys.

How to install smbCloud Mail & Auth

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SMB_MAIL_API_KEY
    secret

    Mail app API key (smb_mail_...) used by the mail_send tool. Optional: every other tool uses the session from `smb login`.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "smbcloud-cli": {
      "command": "npx",
      "args": [
        "-y",
        "@smbcloud/cli",
        "--mcp"
      ],
      "env": {
        "SMB_MAIL_API_KEY": "<YOUR_SMB_MAIL_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "smbcloud-cli": {
      "command": "npx",
      "args": [
        "-y",
        "@smbcloud/cli",
        "--mcp"
      ],
      "env": {
        "SMB_MAIL_API_KEY": "<YOUR_SMB_MAIL_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "smbcloud-cli": {
      "command": "npx",
      "args": [
        "-y",
        "@smbcloud/cli",
        "--mcp"
      ],
      "env": {
        "SMB_MAIL_API_KEY": "<YOUR_SMB_MAIL_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "smbcloud-cli": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@smbcloud/cli",
        "--mcp"
      ],
      "env": {
        "SMB_MAIL_API_KEY": "<YOUR_SMB_MAIL_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add smbcloud-cli --env SMB_MAIL_API_KEY=<YOUR_SMB_MAIL_API_KEY> -- npx -y @smbcloud/cli --mcp

Related MCP servers

MCP tools for testing mobile and TV apps on iOS simulators, Android phones, and Apple/Android TV.

7
Rust
View repository →