Skip to main content
Glama

Unrestricted Development MCP Server

Unrestricted Development MCP Server

A Model Context Protocol (MCP) server that provides AI with unrestricted access to your development environment.

Features

โœ… Fully Implemented

1. Filesystem Tools (10 tools)

  • fs_read_file - Read file contents

  • fs_write_file - Write/overwrite files with auto-directory creation

  • fs_append_file - Append to existing files

  • fs_delete_file - Delete files

  • fs_list_directory - List directory contents (recursive support)

  • fs_create_directory - Create directories

  • fs_delete_directory - Delete directories (recursive support)

  • fs_get_file_info - Get file/directory metadata

  • fs_move_file - Move/rename files

  • fs_copy_file - Copy files

2. Shell Tools (2 tools)

  • shell_execute - Execute any shell command with optional sudo

  • shell_execute_streaming - Execute long-running commands with streaming output

๐Ÿšง Stubbed (TODO)

  • Docker tools (container management)

  • MongoDB tools (database operations)

  • Git tools (version control)

  • Process tools (process management)

  • Network tools (HTTP, SSH, etc.)

Quick Setup (Ubuntu)

  1. Install dependencies:

    cd /home/connor-boetig/proj/mcp2 npm install
  2. Build the project:

    npm run build
  3. Add to Claude Code:

    Use the Claude Code CLI to add the MCP server:

    claude mcp add-json unrestricted-dev '{"command":"node","args":["/home/connor-boetig/proj/mcp2/build/index.js"],"cwd":"/"}'

    Verify it's configured:

    claude mcp list

    You should see: unrestricted-dev: node /home/connor-boetig/proj/mcp2/build/index.js - โœ“ Connected

  4. Start using it! - The MCP tools are now available globally in every Claude Code conversation.

    Type /mcp to see your configured servers, or just start asking Claude to use the tools!

Development

Run manually for testing:

npm start

Watch mode for development:

npm run watch

Working Directory Behavior

Important Notes:

  • The MCP server launches from the root directory (/) for full system access

  • For file operations:

    • Absolute paths (e.g., /home/connor-boetig/projects/file.txt) always work

    • Relative paths (e.g., ./etc/nginx/nginx.conf or home/connor-boetig/file.txt) are relative to /

    • Both absolute and relative paths work seamlessly since we start from root

Security Warning

โš ๏ธ This server grants UNRESTRICTED system access including:

  • Full filesystem read/write/delete

  • Shell command execution with sudo

  • All privileges you have

Only use this on:

  • Local development machines (NOT production)

  • Trusted environments (VM, Docker, dedicated dev box)

  • When you understand and accept the risks

Example Usage

Once connected, the AI can:

// Read a file await use_mcp_tool({ server_name: "unrestricted-dev", tool_name: "fs_read_file", arguments: { path: "/path/to/file.txt" } }); // Install a package await use_mcp_tool({ server_name: "unrestricted-dev", tool_name: "shell_execute", arguments: { command: "apt install -y nodejs", sudo: true } }); // List directory await use_mcp_tool({ server_name: "unrestricted-dev", tool_name: "fs_list_directory", arguments: { path: "/home/user/projects", recursive: true, showHidden: false } });

Project Structure

mcp2/ โ”œโ”€โ”€ package.json # Dependencies and scripts โ”œโ”€โ”€ tsconfig.json # TypeScript config โ”œโ”€โ”€ src/ โ”‚ โ”œโ”€โ”€ index.ts # Main server entry point โ”‚ โ””โ”€โ”€ tools/ โ”‚ โ”œโ”€โ”€ filesystem.ts # โœ… Fully implemented โ”‚ โ”œโ”€โ”€ shell.ts # โœ… Fully implemented โ”‚ โ”œโ”€โ”€ docker.ts # ๐Ÿšง Stub โ”‚ โ”œโ”€โ”€ mongodb.ts # ๐Ÿšง Stub โ”‚ โ”œโ”€โ”€ git.ts # ๐Ÿšง Stub โ”‚ โ”œโ”€โ”€ process.ts # ๐Ÿšง Stub โ”‚ โ””โ”€โ”€ network.ts # ๐Ÿšง Stub โ””โ”€โ”€ build/ # Compiled output

Development

Watch mode for development:

npm run watch

License

MIT

Deploy Server
A
security โ€“ no known vulnerabilities
F
license - not found
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

Provides unrestricted access to your development environment with filesystem operations and shell command execution capabilities, including sudo support for local development machines.

  1. Features
    1. โœ… Fully Implemented
    2. ๐Ÿšง Stubbed (TODO)
  2. Quick Setup (Ubuntu)
    1. Development
      1. Working Directory Behavior
        1. Security Warning
          1. Example Usage
            1. Project Structure
              1. Development
                1. License

                  MCP directory API

                  We provide all the information about MCP servers via our MCP API.

                  curl -X GET 'https://glama.ai/api/mcp/v1/servers/ConnorBoetig-dev/mcp2'

                  If you have feedback or need assistance with the MCP directory API, please join our Discord server