Zo

ทางการ

Zo คือเซิร์ฟเวอร์ส่วนตัวของคุณบนคลาวด์ที่มีเครื่องมือและการผสานการทำงานมากกว่า 50 รายการ เพิ่มการส่งข้อความ อีเมล ปฏิทิน การค้นคว้า และอื่นๆ ลงในชุดเครื่องมือของคุณได้อย่างง่ายดาย

คุณทำอะไรได้บ้างด้วย Zo MCP?

  • อ่าน เขียน และแก้ไขไฟล์บนคอมพิวเตอร์ Zo ของคุณ — ใช้ read_file, write_file และ edit_file เพื่อจัดการไฟล์ในสภาพแวดล้อมคลาวด์ถาวรของคุณ
  • รันคำสั่งเชลล์ — ดำเนินการคำสั่งใดๆ บนเซิร์ฟเวอร์ Zo Linux ของคุณผ่าน run_bash_command
  • ท่องเว็บและจับภาพหน้าเว็บ — ค้นหา ดึงเนื้อหาหน้าเว็บ หรือจับภาพหน้าจอโดยใช้ read_webpage
  • สร้างภาพ AI — สร้างและแก้ไขภาพด้วย generate_image

เอกสาร

MCP Server

เพิ่มพลังให้ AI ที่รองรับ MCP ด้วยเครื่องมือและบริบทของ Zo

ใช้ Zo MCP Server เพื่อเพิ่มพลังให้ AI ใดๆ ที่รองรับ MCP ด้วยเครื่องมือและบริบทของ Zo Zo มีปลายทาง MCP (Model Context Protocol) ดังนั้นเครื่องมือ AI อย่าง Claude Code, Gemini CLI, Codex หรือเครื่องมืออื่นๆ ที่รองรับ MCP สามารถเข้าถึง Zo ของคุณได้โดยตรง — ไฟล์ของคุณ, แอปที่เชื่อมต่ออย่าง Gmail และ Google Calendar, และเครื่องมือทั้งหมดของ Zo

ทำไมต้องใช้ Zo เป็น MCP server?

Zo คือเซิร์ฟเวอร์ Linux เต็มรูปแบบบนคลาวด์ที่มีเครื่องมือในตัวมากกว่า 50 รายการ:

  • ไฟล์ & เชลล์ — อ่าน, เขียน, ค้นหา, รันคำสั่ง
  • การผสานรวม — Gmail, Calendar, Notion, Linear, Airtable, Dropbox, Spotify
  • ความสามารถ — ท่องเว็บ, สร้างภาพ, งานตามกำหนดเวลา, ส่งข้อความ, ส่งอีเมล
  • เป็นของคุณทั้งหมด — สิทธิ์ root, พื้นที่จัดเก็บถาวร, ติดตั้งอะไรก็ได้ตามต้องการ

เริ่มต้นอย่างรวดเร็ว

  1. ไปที่ Settings > Advanced และสร้าง access token
  2. คัดลอกทันที - คุณจะไม่เห็นมันอีก
  3. กำหนดค่าเครื่องมือ AI ของคุณโดยใช้คำแนะนำด้านล่าง
API key ของคุณให้สิทธิ์เข้าถึง Zo ของคุณอย่างเต็มรูปแบบ เก็บเป็นความลับและอย่า commit ไปยัง version control

การกำหนดค่า

[Claude Code](https://docs.anthropic.com/en/docs/claude-code) คือเครื่องมือ CLI ของ Anthropic สำหรับ Claude
```bash theme={null}
claude mcp add --transport http zo https://api.zo.computer/mcp \
  --header "Authorization: Bearer zo_sk_your_key_here"
```

หรือเพิ่มด้วยตนเองไปยัง `~/.claude/settings.json`:

```json theme={null}
{
  "mcpServers": {
    "zo": {
      "type": "http",
      "url": "https://api.zo.computer/mcp",
      "headers": {
        "Authorization": "Bearer zo_sk_your_key_here"
      }
    }
  }
}
```
[Claude Desktop](https://claude.ai/download) คือแอปเดสก์ท็อปของ Anthropic สำหรับ Claude
เพิ่มไปยัง `claude_desktop_config.json` ของคุณ:

```json theme={null}
{
  "mcpServers": {
    "zo": {
      "command": "npx",
      "args": [
        "mcp-remote@latest",
        "https://api.zo.computer/mcp",
        "--header",
        "Authorization: Bearer zo_sk_your_key_here"
      ]
    }
  }
}
```

ตำแหน่งไฟล์ config: `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) หรือ `%APPDATA%\Claude\claude_desktop_config.json` (Windows)
[Cursor](https://cursor.com) คือโปรแกรมแก้ไขโค้ดที่ขับเคลื่อนด้วย AI
เพิ่มไปยังการตั้งค่า Cursor MCP ของคุณ (`~/.cursor/mcp.json`):

```json theme={null}
{
  "mcpServers": {
    "zo": {
      "url": "https://api.zo.computer/mcp",
      "headers": {
        "Authorization": "Bearer zo_sk_your_key_here"
      }
    }
  }
}
```
[Zed](https://zed.dev) คือโปรแกรมแก้ไขโค้ดประสิทธิภาพสูง
เพิ่มไปยังการตั้งค่า Zed ของคุณ (`~/.config/zed/settings.json`):

```json theme={null}
{
  "context_servers": {
    "zo": {
      "settings": {},
      "url": "https://api.zo.computer/mcp",
      "headers": {
        "Authorization": "Bearer zo_sk_your_key_here"
      }
    }
  }
}
```
[OpenCode](https://opencode.ai) คือเอเจนต์เขียนโค้ด AI แบบโอเพนซอร์สสำหรับเทอร์มินัล
เพิ่มไปยัง `opencode.json` ของคุณ:

```json theme={null}
{
  "mcp": {
    "zo": {
      "type": "remote",
      "url": "https://api.zo.computer/mcp",
      "headers": {
        "Authorization": "Bearer zo_sk_your_key_here"
      }
    }
  }
}
```
[Gemini CLI](https://geminicli.com/) คือเครื่องมือบรรทัดคำสั่งของ Google สำหรับ Gemini
```bash theme={null}
gemini mcp add zo https://api.zo.computer/mcp --transport http --scope user \
  -H "Authorization: Bearer zo_sk_your_key_here"
```

หรือเพิ่มด้วยตนเองไปยัง `~/.gemini/settings.json`:

```json theme={null}
{
  "mcpServers": {
    "zo": {
      "url": "https://api.zo.computer/mcp",
      "type": "http",
      "headers": {
        "Authorization": "Bearer zo_sk_your_key_here"
      }
    }
  }
}
```
[Codex](https://github.com/openai/codex) คือเครื่องมือ CLI ของ OpenAI
```bash theme={null}
codex mcp add zo -- npx -y mcp-remote https://api.zo.computer/mcp \
  --header "Authorization:Bearer zo_sk_your_key_here" --transport http-only
```

หรือเพิ่มด้วยตนเองไปยัง `~/.codex/config.toml`:

```toml theme={null}
[mcp_servers.zo]
command = "npx"
args = ["-y", "mcp-remote", "https://api.zo.computer/mcp", "--header", "Authorization:Bearer zo_sk_your_key_here", "--transport", "http-only"]
```
ปลายทาง MCP ของ Zo ใช้การขนส่ง HTTP มาตรฐาน สำหรับไคลเอนต์ที่รองรับ MCP ใดๆ ให้ใช้:
| การตั้งค่า     | ค่า                                         |
| -------------- | ------------------------------------------- |
| Transport      | HTTP                                        |
| URL            | `https://api.zo.computer/mcp`               |
| Auth Header    | `Authorization: Bearer zo_sk_your_key_here` |

หากไคลเอนต์ของคุณรองรับเฉพาะการขนส่งแบบ stdio (ไม่ใช่ HTTP) คุณสามารถใช้ [mcp-remote](https://www.npmjs.com/package/mcp-remote) เป็นสะพานเชื่อม กำหนดค่าไคลเอนต์ของคุณให้รันคำสั่งนี้:

```bash theme={null}
npx -y mcp-remote https://api.zo.computer/mcp --header "Authorization:Bearer zo_sk_your_key_here" --transport http-only
```

ตัวอย่างเช่น ใน JSON config ที่คาดหวัง `command` และ `args`:

```json theme={null}
{
  "command": "npx",
  "args": ["-y", "mcp-remote", "https://api.zo.computer/mcp", "--header", "Authorization:Bearer zo_sk_your_key_here", "--transport", "http-only"]
}
```

เครื่องมือที่พร้อมใช้งาน

เครื่องมือ Zo ทั้งหมดถูกเปิดเผยผ่าน MCP ด้วยความสามารถที่เหมือนกัน:

อ่าน, เขียน, แก้ไขไฟล์บนคอมพิวเตอร์ Zo ของคุณ รันคำสั่งเชลล์ ค้นหาเว็บ, อ่านหน้า, จับภาพหน้าจอ สร้างและแก้ไขภาพด้วย AI