mcp-magento-cloud
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-magento-cloudList environments for project abc123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-magento-cloud
MCP (Model Context Protocol) server for Adobe Commerce Cloud. Allows AI agents to interact with Magento Cloud projects — query databases, read logs, list environments, inspect activities, and more.
No PHP CLI required — uses the REST API and SSH directly.
Versions
Version | Description | Requirements |
v2.x (latest) | REST API + SSH directly. Browser login or API token. | Node.js 20+, |
v1.x | Wraps the | Node.js 20+, |
Using a specific version
# Latest (v2.x)
npx -y mcp-magento-cloud
# v1.x (requires magento-cloud CLI)
npx -y mcp-magento-cloud@1.0.1Related MCP server: DDEV MCP Server
Prerequisites (v2.x)
Node.js 20+
sshbinary — Available by default on Linux/macOS
Quick Start
Authentication
Automatic browser login (recommended)
No setup required. The first time you use any tool, a browser window will open automatically for OAuth2 login via your Adobe/Magento account. Credentials are stored locally in ~/.config/mcp-magento-cloud/credentials.json and refreshed automatically.
You can also login manually:
npx -y -p mcp-magento-cloud mcp-magento-cloud-loginAPI token (alternative)
If you prefer using an API token (e.g. for CI/CD), create one at https://accounts.magento.cloud/user/api-tokens and pass it as an environment variable (MAGENTO_CLOUD_CLI_TOKEN). When a token is set, browser login is skipped.
Security note: API tokens grant full access to all projects your account has access to. Treat them as sensitive secrets. If a token is compromised, revoke it immediately at the URL above.
Configure your MCP client
Kilo
In ~/.config/kilo/kilo.json:
{
"mcp": {
"magento-cloud": {
"type": "local",
"command": ["npx", "-y", "mcp-magento-cloud"]
}
}
}If using an API token instead of browser login, add the environment key:
{
"mcp": {
"magento-cloud": {
"type": "local",
"command": ["npx", "-y", "mcp-magento-cloud"],
"environment": {
"MAGENTO_CLOUD_CLI_TOKEN": "your-api-token-here"
}
}
}
}Claude Desktop
In claude_desktop_config.json:
{
"mcpServers": {
"magento-cloud": {
"command": "npx",
"args": ["-y", "mcp-magento-cloud"]
}
}
}Gemini CLI
In ~/.gemini/settings.json:
{
"mcpServers": {
"magento-cloud": {
"command": "npx",
"args": ["-y", "mcp-magento-cloud"]
}
}
}Available Tools
REST API Tools
Tool | Description |
| List all projects available to the current user |
| List all environments for a project |
| Get detailed info about an environment |
| Get the public URLs of an environment |
| List recent activities with filters |
| Display the full log for an activity |
| List project or environment variables |
| List services with versions and disk allocation |
SSH Tools
Tool | Description |
| Execute a read-only SQL query on the remote database |
| Read server logs (deploy, error, cron, etc.) |
| Get service connection details (host, port, credentials) |
| List available log types |
Write Tools
Tool | Description |
| Set a Magento config value via |
| Create a new environment branch cloned from integration |
| Push a local git branch to the project using SSH certificate auth |
Security
SQL queries are validated — only SELECT, SHOW, DESCRIBE, and EXPLAIN are allowed
SQL comments are stripped and multiple statements are blocked to prevent injection
Production is protected —
set_cloud_configrefuses to run against theproductionenvironment; such changes must be made manuallySSH authentication uses temporary Ed25519 certificates signed by the Magento Cloud API
Browser login stores refresh tokens locally with
0600permissionsAPI tokens should be treated as sensitive secrets — they grant full access to all projects
Testing with MCP Inspector
# Browser login will open automatically on first tool use
npx @modelcontextprotocol/inspector node dist/main.js
# Or with API token
MAGENTO_CLOUD_CLI_TOKEN=your-token npx @modelcontextprotocol/inspector node dist/main.jsDevelopment
git clone https://github.com/juan-cinto-infracommerce/mcp-magento-cloud.git
cd mcp-magento-cloud
npm install
npm run build
npm startLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/juan-cinto-infracommerce/mcp-magento-cloud'
If you have feedback or need assistance with the MCP directory API, please join our Discord server