{"id":47844715,"url":"https://github.com/ajaychinthapalli/copilot-mcp-email","last_synced_at":"2026-04-03T21:08:24.213Z","repository":{"id":330537577,"uuid":"1122079312","full_name":"ajaychinthapalli/copilot-mcp-email","owner":"ajaychinthapalli","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-27T05:31:34.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-27T18:07:49.706Z","etag":null,"topics":["copilot-coding-agent"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ajaychinthapalli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-24T04:25:46.000Z","updated_at":"2025-12-27T05:42:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ajaychinthapalli/copilot-mcp-email","commit_stats":null,"previous_names":["ajaychinthapalli/copilot-mcp-email"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ajaychinthapalli/copilot-mcp-email","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaychinthapalli%2Fcopilot-mcp-email","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaychinthapalli%2Fcopilot-mcp-email/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaychinthapalli%2Fcopilot-mcp-email/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaychinthapalli%2Fcopilot-mcp-email/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajaychinthapalli","download_url":"https://codeload.github.com/ajaychinthapalli/copilot-mcp-email/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaychinthapalli%2Fcopilot-mcp-email/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31377579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["copilot-coding-agent"],"created_at":"2026-04-03T21:08:23.425Z","updated_at":"2026-04-03T21:08:24.207Z","avatar_url":"https://github.com/ajaychinthapalli.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# copilot-mcp-email\n\nMCP (Model Context Protocol) server for sending emails using nodemailer.\n\n## Features\n\n- Implements `sendEmail` tool for sending emails via MCP protocol\n- Uses nodemailer for email delivery\n- Supports Gmail and other SMTP services\n\n## Setup\n\n1. Install dependencies:\n```bash\nnpm install\n```\n\n2. Create a `.env` file with your email credentials:\n```bash\ncp .env.example .env\n```\n\nEdit `.env` and add your Gmail credentials:\n- `EMAIL_USER`: Your Gmail address\n- `EMAIL_PASS`: Your Gmail App Password (generate at https://myaccount.google.com/apppasswords)\n\n3. Build the project:\n```bash\nnpm run build\n```\n\n## Usage\n\n### Verify Installation\n\nTo verify the MCP server is properly configured:\n```bash\nnpm run verify\n```\n\nThis will display the sendEmail tool configuration and usage instructions.\n\n### As an MCP Server\n\nRun the server:\n```bash\nnpm start\n```\n\nThe server runs on stdio and exposes the `sendEmail` tool with the following parameters:\n- `to` (string): Recipient email address\n- `subject` (string): Email subject\n- `body` (string): Email body content\n\n### Send Test Email\n\nTo send a test email to srisowmyarupaputta@gmail.com:\n```bash\nnpm run send-test\n```\n\nThis will send an email with:\n- To: srisowmyarupaputta@gmail.com\n- Subject: Test\n- Body: Hello from MCP\n\n## MCP Tool Schema\n\n```json\n{\n  \"name\": \"sendEmail\",\n  \"description\": \"Send an email using nodemailer\",\n  \"inputSchema\": {\n    \"type\": \"object\",\n    \"properties\": {\n      \"to\": {\n        \"type\": \"string\",\n        \"description\": \"Recipient email address\"\n      },\n      \"subject\": {\n        \"type\": \"string\",\n        \"description\": \"Email subject\"\n      },\n      \"body\": {\n        \"type\": \"string\",\n        \"description\": \"Email body content\"\n      }\n    },\n    \"required\": [\"to\", \"subject\", \"body\"]\n  }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaychinthapalli%2Fcopilot-mcp-email","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajaychinthapalli%2Fcopilot-mcp-email","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaychinthapalli%2Fcopilot-mcp-email/lists"}