Mcp Server Gmail Send — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Gmail Send (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This document defines the input/output contract and usage examples for the gmail_send skill.
{
"type": "object",
"properties": {
"username": { "type": "string", "description": "Gmail username (email address)" },
"app_password": { "type": "string", "description": "16-character Gmail App Password" },
"content": { "type": "string", "description": "Email content in Markdown format" },
"to_email": { "type": "string", "description": "Recipient email address" },
"subject": { "type": "string", "description": "Email subject line", "default": "Email from Gmail Send Skill" },
"from_name": { "type": "string", "description": "Display name for the sender", "default": null }
},
"required": ["username", "app_password", "content", "to_email"]
}All outputs MUST follow the core contract:
Success:
{
"success": true,
"data": { /* result object */ },
"error": null
}Failure:
{
"success": false,
"data": null,
"error": "Error message"
}python3 main.py gmail-send \
"[email protected]" "abcd efgh ijkl mnop" "# Hello\n\nThis is a test" "[email protected]" --subject "Test"CLI output MUST be valid JSON and contain no additional logging on stdout.
Request: MCP tool invocation gmail_send with parameters as above.
Response: MCP transport MUST return the content wrapper containing a JSON string with the output schema.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.