{"id":34606038,"url":"https://github.com/muench-dev/mage-remote-run","last_synced_at":"2026-02-22T19:09:02.173Z","repository":{"id":330154442,"uuid":"1121695839","full_name":"muench-dev/mage-remote-run","owner":"muench-dev","description":"A tool to manage remote Adobe Commerce / Magento / Mage-OS instances from command line","archived":false,"fork":false,"pushed_at":"2026-01-11T10:07:45.000Z","size":764,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T15:25:54.445Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/muench-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-23T11:58:56.000Z","updated_at":"2026-01-11T10:07:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/muench-dev/mage-remote-run","commit_stats":null,"previous_names":["muench-dev/mage-remote-run"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/muench-dev/mage-remote-run","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muench-dev%2Fmage-remote-run","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muench-dev%2Fmage-remote-run/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muench-dev%2Fmage-remote-run/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muench-dev%2Fmage-remote-run/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/muench-dev","download_url":"https://codeload.github.com/muench-dev/mage-remote-run/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muench-dev%2Fmage-remote-run/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28880845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-24T13:46:50.635Z","updated_at":"2026-01-29T16:01:59.265Z","avatar_url":"https://github.com/muench-dev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mage Remote Run\n\nThe remote swiss army knife for Magento Open Source, Mage-OS, Adobe Commerce\n\n## Project Status\n\nThis tool is in an early stage and not yet stable. Expect breaking changes as the CLI evolves.\n\n## Features\n\n- **Connection Management**: Easily switch between multiple Magento instances (SaaS/PaaS).\n- **Interactive Prompts**: User-friendly wizard for configuration and command inputs.\n- **Rich Output**: Formatted tables and structured data display.\n- **Interactive Console (REPL)**: Run CLI commands or JavaScript in a live session.\n- **MCP Server**: Expose commands as MCP tools over stdio or HTTP (SSE).\n- **Comprehensive API Support**:\n    - **Stores**: Manage websites, stores, and store views.\n    - **Customers**: List, search, show, and delete customers.\n    - **Orders**: View latest orders and order details.\n    - **Products**: Inspect product types and attributes.\n    - **Tax**: List tax classes.\n\n## Installation\n\n```bash\nnpm install -g mage-remote-run\n```\n\nOr run directly via `npx` without installation:\n\n```bash\nnpx mage-remote-run [command]\n```\n\n## Usage\n\n### Configuration\n\nThe CLI supports multiple profiles. You can configure them interactively.\n\n1.  **Add a Connection**:\n    ```bash\n    node bin/mage-remote-run.js connection add\n    ```\n    Follow the prompts to enter your instance URL and API credentials (Bearer Token).\n\n2.  **Select Active Profile**:\n    ```bash\n    node bin/mage-remote-run.js connection select\n    ```\n\n3.  **Check Status**:\n    ```bash\n    node bin/mage-remote-run.js connection status\n    ```\n\n4.  **Test Connections**:\n    ```bash\n    node bin/mage-remote-run.js connection test --all\n    ```\n    \n### Key Commands\n\n- **Websites**:\n  ```bash\n  node bin/mage-remote-run.js website list\n  node bin/mage-remote-run.js website search \u003cquery\u003e\n  ```\n\n- **Stores**:\n  ```bash\n  node bin/mage-remote-run.js store list\n  node bin/mage-remote-run.js store view list\n  ```\n\n- **Customers**:\n  ```bash\n  node bin/mage-remote-run.js customer list\n  node bin/mage-remote-run.js customer show \u003cid\u003e\n  ```\n\n- **Orders**:\n  ```bash\n  node bin/mage-remote-run.js order latest\n  node bin/mage-remote-run.js order show \u003cincrement_id\u003e\n  ```\n\n### Interactive Console (REPL)\n\n```bash\nnode bin/mage-remote-run.js console\n# or\nnode bin/mage-remote-run.js repl\n```\n\nInside the console, you can run commands directly (for example, `website list`) or evaluate JavaScript with top-level `await`.\n\n### MCP Server\n\nExpose the CLI as an MCP server:\n\n```bash\nnode bin/mage-remote-run.js mcp --transport stdio\nnode bin/mage-remote-run.js mcp --transport http --host 127.0.0.1 --port 18098\n```\n\nCommands are registered as tools (for example, `website list` becomes `website_list`), and tool inputs map to the same CLI arguments and options.\n\n## Development\n\n### Testing\n\nThe project uses Jest for testing.\n\n```bash\nnpm test\n```\n\n### Project Structure\n\n- `bin/`: CLI entry point.\n- `lib/commands/`: Command implementations.\n- `lib/api/`: API client factory and logic.\n- `tests/`: Unit and integration tests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuench-dev%2Fmage-remote-run","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuench-dev%2Fmage-remote-run","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuench-dev%2Fmage-remote-run/lists"}