{"id":74328,"date":"2026-04-11T14:31:27","date_gmt":"2026-04-11T06:31:27","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=74328"},"modified":"2026-04-11T13:31:42","modified_gmt":"2026-04-11T05:31:42","slug":"how-to-use-minimax-cli-2","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/","title":{"rendered":"How to Install and Use MiniMax CLI"},"content":{"rendered":"<p>If you are new to command-line AI tools, MiniMax CLI is a pretty friendly place to start.<\/p>\n<p>Instead of opening a web dashboard every time you want to test a prompt, generate an image, or synthesize speech, you can do it all from the terminal with one command: <code>mmx<\/code>. If you are still getting comfortable with <a href=\"https:\/\/www.hongkiat.com\/blog\/developers-command-line\/\">command-line basics<\/a>, that alone is a nice shift.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/MiniMax-AI\/cli\">MiniMax CLI<\/a> is the official command-line tool for the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/platform.minimax.io\/\">MiniMax AI platform<\/a>. Once it is installed, you can use it to generate text, images, video, speech, music, run image analysis, perform web search, and manage your MiniMax account settings from the terminal.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg\" alt=\"MiniMax CLI screen\" width=\"1800\" height=\"760\"><\/figure>\n<p>This guide walks through the basics: how to install it, how to log in, how to use it, and what each major feature can do.<\/p>\n<h2 id=\"what-minimax-cli-is\">What MiniMax CLI Is<\/h2>\n<p>MiniMax CLI is a Node.js-based tool published by MiniMax-AI. It gives you terminal access to MiniMax models and services through a single command-line interface.<\/p>\n<p>If you have used tools like <code>git<\/code>, <code>npm<\/code>, or <code>ffmpeg<\/code>, the idea is similar. You install it once, then run different subcommands depending on what you want to do.<\/p>\n<p>With MiniMax CLI, those subcommands include <code>text<\/code>, <code>image<\/code>, <code>video<\/code>, <code>speech<\/code>, <code>music<\/code>, <code>vision<\/code>, <code>search<\/code>, <code>auth<\/code>, <code>config<\/code>, and <code>quota<\/code>.<\/p>\n<h2 id=\"before-you-start\">What You Need Before You Start<\/h2>\n<p>Before installing MiniMax CLI, make sure you have two things ready:<\/p>\n<ul>\n<li><strong>Node.js 18 or newer<\/strong><\/li>\n<li><strong>A MiniMax API key with an active token plan<\/strong><\/li>\n<\/ul>\n<p>If those are in place, setup is straightforward. If you are new to shell work in general, brushing up on a few <a href=\"https:\/\/www.hongkiat.com\/blog\/basic-linux-commands\/\">basic terminal commands<\/a> first will make the process feel less awkward.<\/p>\n<h2 id=\"install-minimax-cli\">How to Install MiniMax CLI<\/h2>\n<p>For most people, this is the command to use:<\/p>\n<pre><code>npm install -g mmx-cli<\/code><\/pre>\n<p>That installs the <code>mmx<\/code> command globally so you can run it from anywhere in your terminal.<\/p>\n<p>The project also documents an agent-oriented install path:<\/p>\n<pre><code>npx skills add MiniMax-AI\/cli -y -g<\/code><\/pre>\n<p>That one is more useful if you are wiring it into an AI agent environment. If you are just learning the tool or using it manually, start with the global npm install.<\/p>\n<h2 id=\"log-in\">How to Log In<\/h2>\n<p>Once the CLI is installed, the next step is authentication.<\/p>\n<p>If you already have your API key, run:<\/p>\n<pre><code>mmx auth login --api-key sk-xxxxx<\/code><\/pre>\n<p>If you prefer a browser-based login flow, use:<\/p>\n<pre><code>mmx auth login<\/code><\/pre>\n<p>After logging in, these commands are worth knowing:<\/p>\n<pre><code>mmx auth status\nmmx auth refresh\nmmx auth logout<\/code><\/pre>\n<p>You can also check account usage and config with:<\/p>\n<pre><code>mmx quota\nmmx config show<\/code><\/pre>\n<h2 id=\"how-to-use-it\">How to Use MiniMax CLI<\/h2>\n<p>MiniMax CLI works through command groups.<\/p>\n<p>You start with <code>mmx<\/code>, then add a feature area such as <code>text<\/code>, <code>image<\/code>, <code>video<\/code>, <code>speech<\/code>, <code>music<\/code>, <code>vision<\/code>, or <code>search<\/code>. If you already use a few <a href=\"https:\/\/www.hongkiat.com\/blog\/basic-shell-commands-for-bloggers\/\">basic shell commands<\/a>, the pattern will feel familiar quickly.<\/p>\n<p>The easiest way to learn it is to try one command from each group.<\/p>\n<h3 id=\"start-with-text\">Start With Text Generation<\/h3>\n<p>The simplest text example looks like this:<\/p>\n<pre><code>mmx text chat --message \"What is MiniMax?\"<\/code><\/pre>\n<p>That sends a prompt and returns a response in the terminal.<\/p>\n<p>If you want the response to stream live as it is generated, use:<\/p>\n<pre><code>mmx text chat --model MiniMax-M2.7-highspeed --message \"Write a short intro about CLI tools\" --stream<\/code><\/pre>\n<p>If you want to guide the model with a role or instruction, add a system prompt:<\/p>\n<pre><code>mmx text chat \\\n  --system \"You are a coding assistant\" \\\n  --message \"Write a Go function that prints Fibonacci numbers\"<\/code><\/pre>\n<p>And if you are feeding in multi-turn messages from a file or another command, you can pipe them in:<\/p>\n<pre><code>cat messages.json | mmx text chat --messages-file - --output json<\/code><\/pre>\n<p>That last pattern is useful when you want to plug MiniMax CLI into scripts or automated workflows.<\/p>\n<h2 id=\"what-it-can-do\">What MiniMax CLI Can Do<\/h2>\n<p>Once you are comfortable with the basic command pattern, the rest of the tool starts to make sense.<\/p>\n<h3 id=\"generate-text\">Generate Text<\/h3>\n<p>MiniMax CLI can handle normal text prompts, system prompts, multi-turn chat input, streamed responses, and structured JSON output. This is the part most people will reach for first.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx text chat --message \"Explain what an API does in simple terms\"<\/code><\/pre>\n<h3 id=\"generate-images\">Generate Images<\/h3>\n<p>You can create images from text prompts and control things like aspect ratio and batch size.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx image generate --prompt \"A cozy desk setup with a glowing mechanical keyboard\" --n 2 --aspect-ratio 16:9<\/code><\/pre>\n<h3 id=\"generate-video\">Generate Video<\/h3>\n<p>MiniMax CLI can submit video-generation jobs, which is useful for longer-running tasks that may complete asynchronously.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx video generate --prompt \"A paper airplane flying across a city skyline\" --async<\/code><\/pre>\n<p>You can then check progress later:<\/p>\n<pre><code>mmx video task get --task-id 123456<\/code><\/pre>\n<p>And download the result:<\/p>\n<pre><code>mmx video download --file-id 176844028768320 --out paper-airplane.mp4<\/code><\/pre>\n<h3 id=\"generate-speech\">Generate Speech<\/h3>\n<p>You can turn text into speech, choose different voices, and even stream playback.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx speech synthesize --text \"Welcome to your first MiniMax CLI test\" --out welcome.mp3<\/code><\/pre>\n<p>To see available voices:<\/p>\n<pre><code>mmx speech voices<\/code><\/pre>\n<h3 id=\"generate-music\">Generate Music<\/h3>\n<p>MiniMax CLI can also generate music from prompts, with support for lyrics and instrumental output.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx music generate --prompt \"Lo-fi study beat with soft piano\" --instrumental --out lofi.mp3<\/code><\/pre>\n<p>If you want lyrics too:<\/p>\n<pre><code>mmx music generate \\\n  --prompt \"Indie pop with a light summer feel\" \\\n  --lyrics \"[verse] Side streets glowing after rain\" \\\n  --out indie-pop.mp3<\/code><\/pre>\n<h3 id=\"vision\">Analyze Images With Vision<\/h3>\n<p>The vision commands let you pass in an image and ask MiniMax to describe or inspect it.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx vision screenshot.jpg<\/code><\/pre>\n<p>That makes it useful for quick image understanding tasks without leaving the terminal.<\/p>\n<h3 id=\"web-search\">Run Web Search<\/h3>\n<p>MiniMax CLI also includes search commands, which can be handy if you want one command-line tool to handle both generation and quick lookup tasks.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx search \"best ways to use AI from the terminal\"<\/code><\/pre>\n<h3 id=\"account-config\">Manage Account and Config<\/h3>\n<p>There are also practical commands for checking quota, viewing config, switching region settings, and keeping the CLI updated.<\/p>\n<p>Example:<\/p>\n<pre><code>mmx quota\nmmx config show\nmmx update<\/code><\/pre>\n<h2 id=\"good-first-test\">A Good First Test<\/h2>\n<p>If you just installed MiniMax CLI and want a simple way to confirm everything works, start with these:<\/p>\n<pre><code>mmx auth login --api-key sk-xxxxx\nmmx text chat --message \"Summarize what MiniMax CLI can do\"\nmmx image \"A mechanical keyboard floating in space\"<\/code><\/pre>\n<p>That gives you a quick test of authentication, text generation, and image generation in a few seconds.<\/p>\n<p>After that, you can branch into speech, music, video, or scripting.<\/p>\n<h2 id=\"final-thoughts\">Final Thoughts<\/h2>\n<p>MiniMax CLI is easiest to understand once you stop thinking of it as a single AI command and start seeing it as a toolbox.<\/p>\n<p>You install it once, learn the <code>mmx<\/code> command pattern, and then branch into whatever you need: text, image, video, speech, music, vision, or search.<\/p>\n<p>For beginners, that is a nice setup. You do not have to learn five different tools at once. You just learn one CLI, then grow into the rest of it.<\/p>","protected":false},"excerpt":{"rendered":"<p>Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3393],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install and Use MiniMax CLI - Hongkiat<\/title>\n<meta name=\"description\" content=\"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Use MiniMax CLI\" \/>\n<meta property=\"og:description\" content=\"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-11T06:31:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg\" \/>\n<meta name=\"author\" content=\"Hongkiat.com\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/\"},\"author\":{\"name\":\"Hongkiat.com\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/7cc686597d92f9086729e4bcc1577ba3\"},\"headline\":\"How to Install and Use MiniMax CLI\",\"datePublished\":\"2026-04-11T06:31:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/\"},\"wordCount\":876,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/minimax-cli-guide\\\/minimax-cli.jpg\",\"articleSection\":[\"Toolkit\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/\",\"name\":\"How to Install and Use MiniMax CLI - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/minimax-cli-guide\\\/minimax-cli.jpg\",\"datePublished\":\"2026-04-11T06:31:27+00:00\",\"description\":\"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/minimax-cli-guide\\\/minimax-cli.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/minimax-cli-guide\\\/minimax-cli.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/how-to-use-minimax-cli-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Use MiniMax CLI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/7cc686597d92f9086729e4bcc1577ba3\",\"name\":\"Hongkiat.com\",\"description\":\"This post is published by an HKDC (hongkiat.com) staff. (I.e., intern, staff writer, or editor).\",\"sameAs\":[\"https:\\\/\\\/www.hongkiat.com\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install and Use MiniMax CLI - Hongkiat","description":"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Use MiniMax CLI","og_description":"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.","og_url":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2026-04-11T06:31:27+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg","type":"","width":"","height":""}],"author":"Hongkiat.com","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat.com","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/"},"author":{"name":"Hongkiat.com","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/7cc686597d92f9086729e4bcc1577ba3"},"headline":"How to Install and Use MiniMax CLI","datePublished":"2026-04-11T06:31:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/"},"wordCount":876,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg","articleSection":["Toolkit"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/","url":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/","name":"How to Install and Use MiniMax CLI - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg","datePublished":"2026-04-11T06:31:27+00:00","description":"Learn how to install MiniMax CLI, log in, run your first commands, and explore text, image, video, speech, music, and search from the terminal.","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/minimax-cli-guide\/minimax-cli.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/how-to-use-minimax-cli-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install and Use MiniMax CLI"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/7cc686597d92f9086729e4bcc1577ba3","name":"Hongkiat.com","description":"This post is published by an HKDC (hongkiat.com) staff. (I.e., intern, staff writer, or editor).","sameAs":["https:\/\/www.hongkiat.com"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/com\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-jkQ","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74328","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=74328"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74328\/revisions"}],"predecessor-version":[{"id":74329,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74328\/revisions\/74329"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=74328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=74328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=74328"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=74328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}