{"id":50735402,"url":"https://github.com/wyre-technology/proofpoint-mcp","last_synced_at":"2026-06-10T13:01:23.457Z","repository":{"id":355858590,"uuid":"1171072872","full_name":"wyre-technology/proofpoint-mcp","owner":"wyre-technology","description":"MCP server for Proofpoint TAP and Essentials APIs — threat intelligence, email tracing, and MSP org management","archived":false,"fork":false,"pushed_at":"2026-05-30T13:38:05.000Z","size":183,"stargazers_count":0,"open_issues_count":12,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T15:14:59.542Z","etag":null,"topics":["email-security","mcp-server","msp","msp-mcp","proofpoint","typescript","wyre-technology"],"latest_commit_sha":null,"homepage":"https://mcp.wyretechnology.com/mcp-servers/proofpoint/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wyre-technology.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2026-03-02T21:01:51.000Z","updated_at":"2026-05-30T13:35:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wyre-technology/proofpoint-mcp","commit_stats":null,"previous_names":["wyre-technology/proofpoint-mcp"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/wyre-technology/proofpoint-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fproofpoint-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fproofpoint-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fproofpoint-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fproofpoint-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wyre-technology","download_url":"https://codeload.github.com/wyre-technology/proofpoint-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fproofpoint-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34153483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["email-security","mcp-server","msp","msp-mcp","proofpoint","typescript","wyre-technology"],"created_at":"2026-06-10T13:01:22.557Z","updated_at":"2026-06-10T13:01:23.419Z","avatar_url":"https://github.com/wyre-technology.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proofpoint MCP Server\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org/)\n\nA Model Context Protocol (MCP) server for Proofpoint TAP and Essentials APIs. Enables AI assistants to investigate threats, trace emails, manage quarantine, access threat intelligence, and perform URL defense operations.\n\nThis is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that connects Claude (or any MCP-compatible AI) to your Proofpoint environment.\n\n\u003e **Part of the [MSP Claude Plugins](https://github.com/wyre-technology) ecosystem** — a growing suite of AI integrations for the MSP stack. Built by MSPs, for MSPs.\n\n## Installation\n\n```bash\nnpm install @wyre-technology/proofpoint-mcp\n```\n\n## Configuration\n\nSet the following environment variables:\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| `PROOFPOINT_SERVICE_PRINCIPAL` | Yes | Your Proofpoint TAP service principal |\n| `PROOFPOINT_SERVICE_SECRET` | Yes | Your Proofpoint TAP service secret |\n| `PROOFPOINT_BASE_URL` | No | Custom base URL (default: tap-api-v2.proofpoint.com) |\n| `MCP_TRANSPORT` | No | Transport mode: stdio (default) or http |\n\n## Usage\n\n### Running with Claude Desktop\n\nAdd to your Claude Desktop `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"proofpoint-mcp\": {\n      \"command\": \"npx\",\n      \"args\": [\"@wyre-technology/proofpoint-mcp\"],\n      \"env\": {\n        \"PROOFPOINT_SERVICE_PRINCIPAL\": \"your-proofpoint-service-principal\"\n        \"PROOFPOINT_SERVICE_SECRET\": \"your-proofpoint-service-secret\"\n      }\n    }\n  }\n}\n```\n\n### Running with Claude Code (CLI)\n\n```bash\nclaude mcp add proofpoint-mcp \\\n  -e PROOFPOINT_SERVICE_PRINCIPAL=your-value \\\n  -e PROOFPOINT_SERVICE_SECRET=your-value \\\n  -- npx -y @wyre-technology/proofpoint-mcp\n```\n\n### Docker\n\n```bash\ndocker build -t proofpoint-mcp .\ndocker run \\\n  -e PROOFPOINT_SERVICE_PRINCIPAL=your-value \\\n  -e PROOFPOINT_SERVICE_SECRET=your-value \\\n  -p 8080:8080 proofpoint-mcp\n```\n\n## Available Domains\n\n### Dlp\nData loss prevention policies\n\n### Events\nSecurity event stream and SIEM export\n\n### Forensics\nForensic analysis of threats\n\n### People\nVery Attacked People (VAP) reporting\n\n### Policy\nEmail policy management\n\n### Quarantine\nEmail quarantine management\n\n### Reports\nSecurity reports and summaries\n\n### Smart Search\nAdvanced email search\n\n### Tap\nTargeted Attack Protection events and campaigns\n\n### Threat Intel\nThreat intelligence and indicators of compromise\n\n### Url Defense\nURL rewriting and click defense\n\n\n## Development\n\n```bash\n# Clone the repository\ngit clone https://github.com/wyre-technology/proofpoint-mcp.git\ncd proofpoint-mcp\n\n# Install dependencies\nnpm install\n\n# Build\nnpm run build\n\n# Run tests\nnpm test\n```\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) if present, or open an issue to discuss changes.\n\n## License\n\nLicensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fproofpoint-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwyre-technology%2Fproofpoint-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fproofpoint-mcp/lists"}