name: mcp-email-service
version: 1.0.5
description: A unified MCP email service supporting multi-account management
# MCP server configuration
mcp:
type: stdio
# Simple command to run with system Python
commandFunction: |
(config) => ({
command: "python3",
args: ["-m", "mcp_email_service"],
cwd: `${process.env.HOME}/.config/smithery/servers/mcp-email-service`,
env: {
PYTHONUNBUFFERED: "1"
}
})
# Minimal install - just clone and hope Python has mcp installed
installCommand:
command: sh
args:
- -c
- |
git clone --depth=1 https://github.com/leeguooooo/email-mcp-service.git "$HOME/.config/smithery/servers/mcp-email-service"