The MCP for Security server provides standardized interfaces for various security testing tools through the Model Context Protocol. This integration makes security tools accessible through a consistent API, enabling seamless automation of security testing workflows.
The recommended way to install and use the MCP server is through Docker:
docker pull cyprox/mcp-for-security
This image can be used directly from any MCP client with Docker support, including the Cyprox platform.
Since each MCP server has different dependencies, a general setup script is provided:
./start.sh
It's recommended to check the specific tool's documentation for any additional installation requirements.
The MCP server provides access to multiple security tools through a standardized interface:
All tools follow a similar pattern when used through the MCP server:
# Using an MCP client to run Amass through the MCP server
mcp-client run amass-mcp --domain example.com --mode passive
# Using an MCP client to run FFUF through the MCP server
mcp-client run ffuf-mcp --url https://example.com --wordlist common.txt
# Using an MCP client to run Nmap through the MCP server
mcp-client run nmap-mcp --target 192.168.1.1 --ports 1-1000
Each tool has specific parameters and capabilities. For detailed usage instructions, refer to the individual tool documentation through the MCP server's help command:
mcp-client help [tool-name]
For example:
mcp-client help nuclei-mcp
This will display the available parameters and options for the specified tool.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "security-tools-bridge" '{"command":"npx","args":["-y","@cyproxio/mcp-for-security"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"security-tools-bridge": {
"command": "npx",
"args": [
"-y",
"@cyproxio/mcp-for-security"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"security-tools-bridge": {
"command": "npx",
"args": [
"-y",
"@cyproxio/mcp-for-security"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect