Connects Claude to KnowBe4's security awareness platform via their REST API. You get tools to manage users and groups, launch and monitor phishing simulations, assign training campaigns, pull risk scores, and generate compliance reports. Built for MSPs who need to automate security awareness operations across client tenants. Supports multiple KnowBe4 regions (US, EU, CA, UK, DE) and runs via stdio or HTTP transport. If you're managing KnowBe4 at scale and want to script campaign deployments or pull training metrics without clicking through dashboards, this bridges the gap between your AI workflow and KnowBe4's platform.
A 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.
This is a Model Context Protocol (MCP) server that connects Claude (or any MCP-compatible AI) to your KnowBe4 environment.
Part of the MSP Claude Plugins ecosystem — a growing suite of AI integrations for the MSP stack. Built by MSPs, for MSPs.
npm install @wyre-technology/knowbe4-mcp
Set the following environment variables:
| Variable | Required | Description |
|---|---|---|
KNOWBE4_API_KEY | Yes | Your KnowBe4 API key |
KNOWBE4_REGION | No | API region: us, eu, ca, uk, de (default: us) |
KNOWBE4_BASE_URL | No | Custom base URL (overrides region) |
MCP_TRANSPORT | No | Transport mode: stdio (default) or http |
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"knowbe4-mcp": {
"command": "npx",
"args": ["@wyre-technology/knowbe4-mcp"],
"env": {
"KNOWBE4_API_KEY": "your-knowbe4-api-key"
}
}
}
}
claude mcp add knowbe4-mcp \
-e KNOWBE4_API_KEY=your-value \
-- npx -y @wyre-technology/knowbe4-mcp
docker build -t knowbe4-mcp .
docker run \
-e KNOWBE4_API_KEY=your-value \
-p 8080:8080 knowbe4-mcp
Account information and settings
User group management
Phishing simulation campaigns
Security awareness reports
Training campaign management
User management and risk scoring
# Clone the repository
git clone https://github.com/wyre-technology/knowbe4-mcp.git
cd knowbe4-mcp
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
Contributions are welcome! Please see CONTRIBUTING.md if present, or open an issue to discuss changes.
Licensed under the Apache License, Version 2.0. See LICENSE for details.
KNOWBE4_API_KEY*secretKnowBe4 Reporting API token (Bearer token from KnowBe4 console)
KNOWBE4_REGIONdefault: usKnowBe4 region: 'us', 'eu', 'ca', 'uk', or 'de' — selects API base URL
KNOWBE4_BASE_URLOverride the KnowBe4 API base URL — auto-derived from region if omitted
MCP_TRANSPORTdefault: stdioTransport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.
AUTH_MODEdefault: envCredential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway.
LOG_LEVELdefault: infoLog verbosity: debug, info, warn, error
com.exploit-intel/eip-mcp
dmontgomery40/pentest-mcp
pantheon-security/notebooklm-mcp-secure
cyanheads/pentest-mcp-server
io.github.akhilucky/ai-firewall-mcp