junjie x

Smart your automation workflow— VMOS Cloud MCP available now

by

Now you can add vmoscloud automation task plugins on popular AI platforms(Claude code, Cursor, Open AI Codex, Google Gemini CLI,etc) to automatically handle multi-tasks for you, just like add extensions on your browser.

New Update:

The first batch of vmoscloud plugins now available for free (time-limited), please feel free to try and feedback to us.

• Auto finish Google Play login, no need manually operation
• Manage YouTube accounts
• Manage WhatsApp accounts

How to use:

  • Create key in Developer Center

  • Send JSON-RPC request (scrolling to check specific codes)

  • Get task processing status

First, select one of the service to click,

Find Business Interface-> click access guide, then following the guide to intergrate this service on your AI platforms.

For your convinience, we list the codes for popular AI platforms, scrolling to check:

More Open API details pls check here: https://cloud.vmoscloud.com/vmoscloud/doc/en/server/llms.html

Claude Code

Run the following command to add an MCP server:

claude mcp add --transport http vmos-agent https://vmos-agent.vmoscloud.com...

HTTP Header Authentication Configuration

X-Access-Key=your_access_key_id
X-Secret-Key=your_secret_access_key
X-Project=VMOSCLOUD

OpenAI Codex

mkdir -p .codex && echo '[mcp_servers.vmos-agent]
type = "http"
url = "https://vmos-agent.vmoscloud.com..."
headers = {"X-Access-Key" = "your_access_key_id", "X-Secret-Key" = "your_secret_access_key", "X-Project" = "VMOSCLOUD"}' > .codex/config.toml

Cursor

Run the following command to create the configuration file:

mkdir -p .cursor && echo '{ "mcpServers": { "vmos-agent": { "url": "https://vmos-agent.vmoscloud.com...", "headers": { "X-Access-Key": "your_access_key_id", "X-Secret-Key": "your_secret_access_key", "X-Project": "VMOSCLOUD" } } } }' > .cursor/mcp.json

Google Gemini CLI

mkdir -p .gemini && echo '{ "mcpServers": { "vmos-agent": { "url": "https://vmos-agent.vmoscloud.com...", "headers": { "X-Access-Key": "your_access_key_id", "X-Secret-Key": "your_secret_access_key", "X-Project": "VMOSCLOUD" } } } }' > .gemini/settings.json


Request Example - HTTP Header Authentication

X-Access-Key: your_access_key_id
X-Secret-Key: your_secret_access_key
X-Project: VMOSCLOUD
{"jsonrpc": "2.0",
  "id": "1",
  "method": "tools/call",
  "params": {
    "name": "googleplay_submit",
    "arguments": {
      "padCode": "device001",
      "email": "your@gmail.com",
      "password": "your_password"
    }
  }
}

Note: id is the request identifier, used to match request and response, can pass any value (e.g., "1")

16 views

Add a comment

Replies

Be the first to comment