Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From cybersec-toolkit
Runs a local cybersecurity tool server with optional script execution and external network access. Provides file system capabilities for security analysis.
npx claudepluginhub 26zl/cybersec-toolkit --plugin cybersec-toolkitCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"cybersec-tools": {
"command": "uv",
"args": [
"run",
"--directory",
"mcp_server",
"fastmcp",
"run",
"server.py",
"--transport",
"stdio",
"--no-banner"
],
"env": {
"CYBERSEC_MCP_ALLOW_SCRIPTS": "0",
"CYBERSEC_MCP_ALLOW_EXTERNAL": "0"
}
}
}
}Server configuration and connection parameters
uvCommand-line arguments passed to the server process
Environment variables set when the server starts
CYBERSEC_MCP_ALLOW_SCRIPTS=0CYBERSEC_MCP_ALLOW_EXTERNAL=0Declared capabilities of this MCP server
Share bugs, ideas, or general feedback.