mailagent-cli-interface
Facilitate robust interaction with the AgentMail service layer, enabling streamlined management of electronic correspondence and optimizing application communication workflows.
Author

agentmail-to
Quick Info
Actions
Tags
AgentMail Command-Line Utility Package
This utility package exposes functions corresponding to the AgentMail Application Programming Interface.
Initialization Requirements
Authentication Tokens
Acquire your unique access credential from the official AgentMail portal at [https://agentmail.to]
Configuration Schema
To integrate this utility within your environment configuration, utilize the following structure:
{
"mcpServers": {
"AgentMail": {
"command": "npx",
"args": ["-y", "agentmail-mcp"],
"env": {
"AGENTMAIL_API_KEY": "YOUR_SECRET_KEY_HERE"
}
}
}
}
Tool Activation Strategy
By default, the entire suite of exposed functionalities is accessible. You retain the option to restrict the loaded capabilities by employing the --tools flag, supplying a comma-delimited enumeration of desired function names.
Deployment Example (Selective Loading)
{
"mcpServers": {
"AgentMail": {
"command": "npx",
"args": ["-y", "agentmail-mcp", "--tools", "fetch_inbox,respond_to_item,draft_new_correspondence"],
"env": {
"AGENTMAIL_API_KEY": "YOUR_SECRET_KEY_HERE"
}
}
}
}
