Zo MCP Server
공식Zo는 50개 이상의 도구와 통합 기능을 갖춘 클라우드 기반 개인 바이브 서버입니다. 문자, 이메일, 캘린더, 리서치 등을 쉽게 하네스에 추가할 수 있습니다.
문서
MCP 서버
Zo의 도구와 컨텍스트로 모든 MCP 호환 AI를 강화하세요
Zo MCP 서버를 사용하여 MCP를 지원하는 모든 AI를 Zo의 도구와 컨텍스트로 강화하세요. Zo는 MCP (모델 컨텍스트 프로토콜) 엔드포인트를 노출하므로, Claude Code, Gemini CLI, Codex 또는 기타 MCP 호환 도구와 같은 AI 도구가 Zo에 직접 액세스할 수 있습니다 — 파일, Gmail 및 Google Calendar와 같은 연결된 앱, 그리고 Zo의 모든 도구에 접근 가능합니다.
Zo를 MCP 서버로 사용하는 이유
Zo는 50개 이상의 도구가 내장된 클라우드의 완전한 Linux 서버입니다:
- 파일 및 셸 — 읽기, 쓰기, 검색, 명령 실행
- 통합 — Gmail, Calendar, Notion, Linear, Airtable, Dropbox, Spotify
- 기능 — 웹 브라우징, 이미지 생성, 예약 작업, 문자 메시지, 이메일 발송
- 완전한 소유 — 루트 액세스, 영구 스토리지, 원하는 모든 것을 설치 가능
빠른 시작
- 설정 > 고급으로 이동하여 액세스 토큰을 생성하세요
- 즉시 복사하세요 - 다시는 볼 수 없습니다
- 아래 지침을 사용하여 AI 도구를 구성하세요
구성
[Claude Code](https://docs.anthropic.com/en/docs/claude-code)는 Claude를 위한 Anthropic의 CLI 도구입니다.```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)은 Claude를 위한 Anthropic의 데스크톱 앱입니다.
`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"
]
}
}
}
```
구성 파일 위치: `~/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/)는 Gemini를 위한 Google의 명령줄 도구입니다.
```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)는 OpenAI의 CLI 도구입니다.
```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"]
```
Zo의 MCP 엔드포인트는 표준 HTTP 전송을 사용합니다. 모든 MCP 호환 클라이언트에 대해 다음을 사용하세요:
| 설정 | 값 |
| ------------ | ------------------------------------------ |
| 전송 | HTTP |
| URL | `https://api.zo.computer/mcp` |
| 인증 헤더 | `Authorization: Bearer zo_sk_your_key_here` |
클라이언트가 HTTP가 아닌 stdio 전송만 지원하는 경우, [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
```
예를 들어, `command` 및 `args`을 기대하는 JSON 구성에서:
```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로 이미지 생성 및 편집