Super Shell MCP is a protocol server that allows secure execution of shell commands across multiple platforms (Windows, macOS, Linux) with built-in security features like command whitelisting and approval workflows.
The easiest way to install Super Shell MCP Server for Claude Desktop is via Smithery:
npx -y @smithery/cli install @cfdude/super-shell-mcp --client claude
# Clone the repository
git clone https://github.com/cfdude/super-shell-mcp.git
cd super-shell-mcp
# Install dependencies
npm install
# Build the project
npm run build
"super-shell": {
"command": "npx",
"args": [
"-y",
"super-shell-mcp"
],
"alwaysAllow": [],
"disabled": false
}
"super-shell": {
"command": "npx",
"args": [
"-y",
"super-shell-mcp"
],
"alwaysAllow": false,
"disabled": false
}
"super-shell": {
"command": "node",
"args": [
"/path/to/super-shell-mcp/build/index.js"
],
"alwaysAllow": [],
"disabled": false
}
"super-shell": {
"command": "node",
"args": [
"/path/to/super-shell-mcp/build/index.js"
],
"alwaysAllow": false,
"disabled": false
}
"super-shell": {
"command": "node",
"args": [
"/path/to/super-shell-mcp/build/index.js",
"--shell=/usr/bin/bash"
],
"alwaysAllow": [],
"disabled": false
}
"super-shell": {
"command": "C:\\Program Files\\nodejs\\node.exe",
"args": [
"C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npx-cli.js",
"-y",
"super-shell-mcp",
"C:\\Users\\username"
],
"alwaysAllow": [],
"disabled": false
}
%APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\cline_mcp_settings.json
%APPDATA%\Claude\claude_desktop_config.json
~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
~/Library/Application Support/Claude/claude_desktop_config.json
~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
~/.config/Claude/claude_desktop_config.json
{
"tool": "get_platform_info",
"parameters": {}
}
{
"tool": "execute_command",
"parameters": {
"command": "ls",
"args": ["-la"]
}
}
{
"tool": "get_whitelist",
"parameters": {}
}
{
"tool": "add_to_whitelist",
"parameters": {
"command": "python3",
"securityLevel": "safe",
"description": "Run Python 3 scripts"
}
}
{
"tool": "update_security_level",
"parameters": {
"command": "python3",
"securityLevel": "requires_approval"
}
}
{
"tool": "remove_from_whitelist",
"parameters": {
"command": "python3"
}
}
{
"tool": "get_pending_commands",
"parameters": {}
}
{
"tool": "approve_command",
"parameters": {
"commandId": "command-uuid-here"
}
}
{
"tool": "deny_command",
"parameters": {
"commandId": "command-uuid-here",
"reason": "This command is potentially dangerous"
}
}
echo
- Print text to standard outputls
- List directory contentspwd
- Print working directorycat
- Concatenate and print filesgrep
- Search for patterns in filesfind
- Find files in a directory hierarchycd
- Change directoryhead
- Output the first part of filestail
- Output the last part of fileswc
- Print newline, word, and byte countsdir
- List directory contentstype
- Display the contents of a text filefindstr
- Search for strings in fileswhere
- Locate programswhoami
- Display current userhostname
- Display computer namever
- Display operating system versionSet-ExecutionPolicy RemoteSigned
\\
) in JSON configurationdir
instead of ls
, findstr
instead of grep
)chmod +x /path/to/shell
logs/super-shell-mcp.log
tail -f logs/super-shell-mcp.log
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.