drio
Open app

shell-mcp-server

Source

Catalog onlyCatalog onlySTDIO

Overview

The shell-mcp-server is a project that serves as a server-side application built using Bun, a fast all-in-one JavaScript runtime.

To use the shell-mcp-server, first install the necessary dependencies by running bun install, and then start the server with bun run index.ts.

  • Built with Bun for high performance - Simple setup and installation process - Server-side application capabilities
  1. Developing server-side applications using Bun.
  2. Testing and running JavaScript applications in a fast environment.
  3. Learning and experimenting with Bun's features.

Add to your AI client

Use these steps to connect shell-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "shell-mcp-server-runfunrun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "shell-mcp-server-runfunrun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "shell-mcp-server-runfunrun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "shell-mcp-server-runfunrun": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "shell-mcp-server-runfunrun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "shell-mcp-server-runfunrun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-shell-mcp-server-runfunrun"
      ]
    }
  }
}

FAQ

What is Bun?

Bun is a fast all-in-one JavaScript runtime that allows developers to build and run JavaScript applications efficiently.

Is shell-mcp-server secure?

Currently, the repository warns that its security measures are insufficient, so caution is advised when using it.

How do I contribute to the project?

You can contribute by forking the repository and submitting pull requests with your improvements.