Loading...
{
"mcpServers": {
"CyberChef API MCP Server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--directory",
"cyberchef-api-mcp-server/cyberchef_api_mcp_server/",
"mcp",
"run",
"server.py"
],
"env": {
"CYBERCHEF_API_URL": "your-cyberchef-api-url"
}
}
}
}get_cyberchef_operations_categoriesRetrieves a list of available operation categories from CyberChef.
Read-only operation, no side effects.
get_cyberchef_operation_by_categoryRetrieves a list of CyberChef operations within a specified category.
Read-only operation, no side effects.
bake_recipeExecutes a CyberChef recipe on the provided input data.
Executes code, but within CyberChef's sandboxed environment.
batch_bake_recipeExecutes a CyberChef recipe on a batch of input data.
Executes code, but within CyberChef's sandboxed environment. Batch processing increases risk.
perform_magic_operationUtilizes CyberChef's magic function to automatically detect and apply relevant operations.
Automated operation selection could lead to unexpected behavior.
This server is relatively safe for read-only operations and simple recipe execution. However, caution should be exercised when using batch processing or exposing the CyberChef API URL to untrusted environments. Ensure the CyberChef API itself is properly secured.