Sidemail MCP
Sidemail MCP Server enables programmatic access to Sidemail’s email, contacts, domains, and Messenger features for easy transactional email management.
How to Install and Use Sidemail MCP
Sidemail MCP is a tool that helps you use Sidemail.io's email and contact features through your code editor or other MCP clients. Follow these simple steps to get it up and running quickly.
What You Need Before Starting
Before installing Sidemail MCP, make sure you have two things ready:
- Node.js version 18 or newer installed on your computer
- Your Sidemail API Key (you can get this from your Sidemail.io account)
Once you have these, you can move on to the installation.
Installing Sidemail MCP in Visual Studio Code (Easy Way)
If you use Microsoft Visual Studio Code, there is a straightforward way to add Sidemail MCP as a server:
- Open the Command Palette by pressing
Ctrl+Shift+P(orCmd+Shift+Pon Mac). - Type
MCP: Add Server…and select this option. - Choose "NPM Package" from the list.
- Enter
@sidemail/mcpas the package name. - Confirm the package installation.
- When asked, enter your Sidemail API key and confirm.
That’s it! Sidemail MCP will be installed and connected to your Sidemail account.
Installing Sidemail MCP Manually in Visual Studio Code
If you want to set up Sidemail MCP manually, you need to edit the MCP configuration file:
- Open the Command Palette using
Ctrl+Shift+P(orCmd+Shift+Pon Mac). - Type
MCP: Open User Configurationand open it. - Add the following configuration to the file:
{
"servers": {
"sidemail-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sidemail/mcp"],
"env": {
"SIDEMAIL_API_KEY": "${input:sidemail-key}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "sidemail-key",
"description": "Sidemail API Key",
"password": true
}
]
}
- Save the file. This setup will ask for your API key when Sidemail MCP starts.
Setting Up Sidemail MCP with Other Tools
Sidemail MCP can also be used with other apps like Claude Desktop or Cursor by editing their respective config files.
For Claude Desktop, create or edit this config file with your API key:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%Claudeclaude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add this:
{
"mcpServers": {
"sidemail": {
"command": "npx",
"args": ["-y", "@sidemail/mcp"],
"env": { "SIDEMAIL_API_KEY": "your-key" }
}
}
}
For Cursor, edit or create ~/.cursor/mcp.json with the same format:
{
"mcpServers": {
"sidemail": {
"command": "npx",
"args": ["-y", "@sidemail/mcp"],
"env": { "SIDEMAIL_API_KEY": "your-key" }
}
}
}
Replace "your-key" with your actual Sidemail API Key.
Using Sidemail MCP from the Command Line
If you want to try Sidemail MCP directly from the terminal, you can easily run:
npx @sidemail/mcp
This command starts the MCP server and connects it to your Sidemail account.
Summary
- Get Node.js v18+ and your Sidemail API Key ready.
- Use Visual Studio Code’s easy server add or edit
mcp.jsonmanually. - For other apps, configure their MCP settings with your API key.
- Run
npx @sidemail/mcpin the terminal to start the server.
Following these steps will make Sidemail MCP work smoothly with your favorite tools, giving you access to Sidemail’s powerful email and contact services right inside your environment.