{"id":50735393,"url":"https://github.com/wyre-technology/knowbe4-mcp","last_synced_at":"2026-06-10T13:01:21.996Z","repository":{"id":354675533,"uuid":"1178004374","full_name":"wyre-technology/knowbe4-mcp","owner":"wyre-technology","description":"MCP server for KnowBe4 — security awareness training, phishing simulation, and user risk scoring tools for AI assistants","archived":false,"fork":false,"pushed_at":"2026-05-26T17:55:05.000Z","size":857,"stargazers_count":0,"open_issues_count":12,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T19:24:08.371Z","etag":null,"topics":["knowbe4","mcp-server","msp","msp-mcp","security-awareness","typescript","wyre-technology"],"latest_commit_sha":null,"homepage":"https://mcp.wyretechnology.com/mcp-servers/knowbe4/","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-10T15:36:17.000Z","updated_at":"2026-05-26T17:55:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wyre-technology/knowbe4-mcp","commit_stats":null,"previous_names":["wyre-technology/knowbe4-mcp"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/wyre-technology/knowbe4-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fknowbe4-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fknowbe4-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fknowbe4-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fknowbe4-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wyre-technology","download_url":"https://codeload.github.com/wyre-technology/knowbe4-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fknowbe4-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":["knowbe4","mcp-server","msp","msp-mcp","security-awareness","typescript","wyre-technology"],"created_at":"2026-06-10T13:01:21.116Z","updated_at":"2026-06-10T13:01:21.979Z","avatar_url":"https://github.com/wyre-technology.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KnowBe4 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 KnowBe4 security awareness training. Enables AI assistants to manage phishing simulations, training campaigns, user risk scoring, and security awareness reporting.\n\nThis is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that connects Claude (or any MCP-compatible AI) to your KnowBe4 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/knowbe4-mcp\n```\n\n## Configuration\n\nSet the following environment variables:\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| `KNOWBE4_API_KEY` | Yes | Your KnowBe4 API key |\n| `KNOWBE4_REGION` | No | API region: us, eu, ca, uk, de (default: us) |\n| `KNOWBE4_BASE_URL` | No | Custom base URL (overrides region) |\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    \"knowbe4-mcp\": {\n      \"command\": \"npx\",\n      \"args\": [\"@wyre-technology/knowbe4-mcp\"],\n      \"env\": {\n        \"KNOWBE4_API_KEY\": \"your-knowbe4-api-key\"\n      }\n    }\n  }\n}\n```\n\n### Running with Claude Code (CLI)\n\n```bash\nclaude mcp add knowbe4-mcp \\\n  -e KNOWBE4_API_KEY=your-value \\\n  -- npx -y @wyre-technology/knowbe4-mcp\n```\n\n### Docker\n\n```bash\ndocker build -t knowbe4-mcp .\ndocker run \\\n  -e KNOWBE4_API_KEY=your-value \\\n  -p 8080:8080 knowbe4-mcp\n```\n\n## Available Domains\n\n### Account\nAccount information and settings\n\n### Groups\nUser group management\n\n### Phishing\nPhishing simulation campaigns\n\n### Reporting\nSecurity awareness reports\n\n### Training\nTraining campaign management\n\n### Users\nUser management and risk scoring\n\n\n## Development\n\n```bash\n# Clone the repository\ngit clone https://github.com/wyre-technology/knowbe4-mcp.git\ncd knowbe4-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%2Fknowbe4-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwyre-technology%2Fknowbe4-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fknowbe4-mcp/lists"}