MCP server intelligence profile

RollDev MCP Server

An MCP server for RollDev and Magento 2 development environments that enables LLMs to manage project environments, execute SQL queries, and run PHP or Magento CLI commands.

Local Onlydockergiant
Awaiting current scanNpm · 1.1.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
10Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @disrex/rolldev-mcp-server from npm

Version 1.1.0 declares 1 executable entrypoint.

npm install --save-exact @disrex/rolldev-mcp-server@1.1.0
npx -y -p @disrex/rolldev-mcp-server@1.1.0 @disrex/rolldev-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "@disrex/rolldev-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@disrex/rolldev-mcp-server@1.1.0",
        "@disrex/rolldev-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugrolldev-mcp-server-d8aae35bDeploymentLocal Only
Canonical packagenpm:@disrex/rolldev-mcp-serverRepositorydockergiant/rolldev-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@disrex/rolldev-mcp-server1.1.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@disrex/rolldev-mcp-server1.1.0CurrentSep 5, 202610 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
rolldev-serverServer-reported name
1Capability groups
Aug 23, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
rolldev_composerRun Composer commands inside the php-fpm container
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    },
    "command": {
      "type": "string",
      "description": "Composer command to execute (e.g., 'install', 'update', 'require symfony/console', 'require-commerce')"
    },
    "save_output_to_file": {
      "type": "boolean",
      "description": "Save full output to a log file for later investigation (useful for long output)",
      "default": false
    }
  },
  "required": [
    "project_path",
    "command"
  ]
}
rolldev_db_queryRun a SQL query in the RollDev database
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    },
    "query": {
      "type": "string",
      "description": "SQL query to execute"
    },
    "database": {
      "type": "string",
      "description": "Database name (optional, defaults to magento)",
      "default": "magento"
    }
  },
  "required": [
    "project_path",
    "query"
  ]
}
rolldev_list_environmentsList all running RollDev environments with their directories (returns structured JSON)
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
rolldev_magento2_initInitialize a new Magento 2 project using RollDev's magento2-init command with automatic version configuration
Input schema
{
  "type": "object",
  "properties": {
    "project_name": {
      "type": "string",
      "description": "Name of the Magento 2 project (lowercase letters, numbers, and hyphens only)"
    },
    "magento_version": {
      "type": "string",
      "description": "Magento version to install (default: 2.4.x). Examples: 2.4.x, 2.4.7, 2.4.7-p3, 2.4.8",
      "default": "2.4.x"
    },
    "target_directory": {
      "type": "string",
      "description": "Directory to create project in (optional, defaults to current directory). Project will be created in a subdirectory named after the project.",
      "default": ""
    }
  },
  "required": [
    "project_name"
  ]
}
rolldev_magento_cliRun roll magento command inside the php-fpm container
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    },
    "command": {
      "type": "string",
      "description": "Magento CLI command (without 'bin/magento' prefix)"
    },
    "args": {
      "type": "array",
      "description": "Additional arguments for the command",
      "items": {
        "type": "string"
      },
      "default": []
    },
    "save_output_to_file": {
      "type": "boolean",
      "description": "Save full output to a log file for later investigation (useful for long output)",
      "default": false
    }
  },
  "required": [
    "project_path",
    "command"
  ]
}
rolldev_php_scriptRun a PHP script inside the php-fpm container
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    },
    "script_path": {
      "type": "string",
      "description": "Path to the PHP script relative to project root"
    },
    "args": {
      "type": "array",
      "description": "Additional arguments to pass to the script",
      "items": {
        "type": "string"
      },
      "default": []
    }
  },
  "required": [
    "project_path",
    "script_path"
  ]
}
rolldev_start_projectStart a RollDev project environment
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    }
  },
  "required": [
    "project_path"
  ]
}
rolldev_start_svcStart RollDev system services
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    }
  },
  "required": [
    "project_path"
  ]
}
rolldev_stop_projectStop a RollDev project environment
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    }
  },
  "required": [
    "project_path"
  ]
}
rolldev_stop_svcStop RollDev system services
Input schema
{
  "type": "object",
  "properties": {
    "project_path": {
      "type": "string",
      "description": "Path to the project directory"
    }
  },
  "required": [
    "project_path"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

RollDev MCP Server questions

How do I install RollDev MCP Server?

Install the selected package version with: npm install --save-exact @disrex/rolldev-mcp-server@1.1.0

What tools does RollDev MCP Server provide?

RollDev MCP Server exposed 10 tools during independent protocol observation, including rolldev_composer, rolldev_db_query, rolldev_list_environments, rolldev_magento2_init, rolldev_magento_cli, rolldev_php_script, rolldev_start_project, rolldev_start_svc, and others.

Is RollDev MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.