# email_send

Send emails directly through Gmail. Use when user wants to send emails, follow up on meetings, or communicate with contacts.

Agent View of the PolicyLayer registry record for `email_send`. HTML page: https://policylayer.com/tools/0xcjt-templonixlite/email-send

## Facts

- Tool: `email_send`
- Server: Templonix Lite MCP Server (`0xcjt/templonixlite`) — https://policylayer.com/tools/0xcjt-templonixlite.md
- Homepage: https://github.com/0xCJT/TemplonixLite
- Risk category: Write (Medium risk)
- Registry record: grade F, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Rate-limited

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "email_send",
    "arguments": {}
  }
}
```

## Why email_send is rated Medium

This tool creates and modifies state by sending emails through Gmail—a Write operation. It is Write rather than Execute because email sending is a data creation/modification action, not arbitrary code execution.

From the tool's own definition: "Tool name 'email_send' and description 'Send emails directly through Gmail' indicate the tool creates and sends email messages, which are persistent written communications."

## Use case

AI agents use email_send to create or update resources in Templonix Lite MCP Server, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Templonix Lite MCP Server environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Templonix Lite MCP Server:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "email_send": {
      "limits": [
        {
          "counter": "email_send_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Templonix Lite MCP Server (17)

- `archive_purge` — Destructive — https://policylayer.com/tools/0xcjt-templonixlite/archive-purge.md
- `calendar_delete_event` — Destructive — https://policylayer.com/tools/0xcjt-templonixlite/calendar-delete-event.md
- `knowledge_clear` — Destructive — https://policylayer.com/tools/0xcjt-templonixlite/knowledge-clear.md
- `diagram_create` — Execute — https://policylayer.com/tools/0xcjt-templonixlite/diagram-create.md
- `archive_search` — Read — https://policylayer.com/tools/0xcjt-templonixlite/archive-search.md
- `archive_search_all` — Read — https://policylayer.com/tools/0xcjt-templonixlite/archive-search-all.md
- `archive_stats` — Read — https://policylayer.com/tools/0xcjt-templonixlite/archive-stats.md
- `calendar_list_events` — Read — https://policylayer.com/tools/0xcjt-templonixlite/calendar-list-events.md
- `jina_search` — Read — https://policylayer.com/tools/0xcjt-templonixlite/jina-search.md
- `knowledge_search` — Read — https://policylayer.com/tools/0xcjt-templonixlite/knowledge-search.md
- `knowledge_stats` — Read — https://policylayer.com/tools/0xcjt-templonixlite/knowledge-stats.md
- `workflow_get` — Read — https://policylayer.com/tools/0xcjt-templonixlite/workflow-get.md
- `workflow_list` — Read — https://policylayer.com/tools/0xcjt-templonixlite/workflow-list.md
- `archive_insert` — Write — https://policylayer.com/tools/0xcjt-templonixlite/archive-insert.md
- `calendar_create_event` — Write — https://policylayer.com/tools/0xcjt-templonixlite/calendar-create-event.md
- `email_save_draft` — Write — https://policylayer.com/tools/0xcjt-templonixlite/email-save-draft.md
- `knowledge_load` — Write — https://policylayer.com/tools/0xcjt-templonixlite/knowledge-load.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=0xcjt-templonixlite · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/0xcjt-templonixlite
