logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

mailagent-cli-interface

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

Author

mailagent-cli-interface logo

agentmail-to

No License

Quick Info

GitHub GitHub Stars 5
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

agentmailapiapisintegrate agentmailagentmail apirequests agentmail

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"
            }
        }
    }
}

See Also

`