Skip to main content
ClaudeWave

MCP server for the NAVER MYBOX Open API - list, search, download and upload files

MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/14/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · naver-mybox-mcp
Claude Code CLI
claude mcp add naver-mybox-mcp -- python -m naver-mybox-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "naver-mybox-mcp": {
      "command": "python",
      "args": ["-m", "naver-mybox-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install naver-mybox-mcp
Casos de uso

Resumen de MCP Servers

# naver-mybox-mcp

<!-- mcp-name: io.github.java-jaydev/naver-mybox-mcp -->

An MCP server for **NAVER MYBOX** (네이버 마이박스) — list, search, download and upload files in
your MYBOX cloud drive from any MCP client (Claude Code, Claude Desktop, and others).

MYBOX opened a public API in August 2026 ([developers.mybox.naver.com](https://developers.mybox.naver.com/)).
This wraps it as tools. Unofficial, not affiliated with NAVER.

## Why

Phone photos land in MYBOX automatically. Getting them onto a machine meant clicking through
the web UI. With this, an agent can fetch "every photo taken on 10–11 September" into a
working folder in one step.

## Install

Requires Python 3.10+.

```bash
pip install naver-mybox-mcp
```

## Get a token

Authentication is a **personal access token**, not OAuth.

1. Sign in at MYBOX on the web.
2. Settings → *account and personal access token management* → **create token**.
3. Copy it immediately — it is shown once.

Up to five tokens per account; each lasts 30, 60, 90 or 180 days, and MYBOX emails you 7 days
and 1 day before expiry. Anyone holding the token can reach the whole drive, so treat it as a
password and never commit it.

Provide it as the `MYBOX_PAT` environment variable, or put it on one line in `~/.mybox/token`.

## Configure your MCP client

```json
{
  "mcpServers": {
    "mybox": {
      "command": "naver-mybox-mcp",
      "env": { "MYBOX_PAT": "mbx_pat_..." }
    }
  }
}
```

In Claude Code: `claude mcp add mybox --env MYBOX_PAT=mbx_pat_... -- naver-mybox-mcp`

## Tools

| Tool | What it does |
|---|---|
| `mybox_storage` | Quota, used bytes, per-category file counts, max upload size |
| `mybox_list` | Entries directly inside a folder, or the drive root |
| `mybox_search` | Search by keyword, category and/or date range (KST) |
| `mybox_file_info` | Attributes of one file or folder |
| `mybox_download` | Download one file into a local directory |
| `mybox_upload` | Upload one local file |
| `mybox_create_folder` | Create a folder |

### Deliberately missing: delete

The API can delete files, empty the trash and set its auto-delete period. Those tools are not
exposed here. An agent that can read and write files is useful; one that can destroy them is a
different risk, and the web UI is right there. Open an issue if you need them behind a flag.

## Quotas

The docs publish per-plan limits and warn that bursts or abuse may be blocked **without prior
notice**, so the client paces itself below the lowest documented per-minute limits (9/min for
search, 55/min otherwise). Free accounts can use the API; the plan only changes the limits.

| Plan | Downloads | Search | Other APIs |
|---|---|---|---|
| 30GB | 500/day | 10/min | 60/min each |
| 80GB | 1,000/day | 10/min | 60/min each |
| 180GB–330GB | 1,000/day | 30/min | 240/min each |
| 2TB | 2,000/day | 30/min | 240/min each |

**Download limits are daily and the client cannot pace around them.** Search first, count the
results, and fetch in batches if the set is large.

## Notes on the API

- Base URL `https://open-api.mybox.naver.com/v1`
- Upload is two steps: `POST /drive/files` returns an `uploadUrl` (48h, single use); the bytes
  go there as multipart field `Filedata`.
- Download is two steps: `GET /drive/files/{id}/download` returns a `downloadUrl`
  (10 minutes, single use).
- Paging: `responseMetaData.nextCursor` goes back as `cursor`.
- Search needs at least one of keyword, category or a date bound.
- **Encrypted folders and folders shared with you are not exposed by the API** — they exist
  only in the web and mobile apps. An empty listing does not mean an empty drive.

## Related projects

The MYBOX API opened on 2026-08-10 and tooling appeared quickly. NAVER publishes no MCP
server or SDK of its own, and its launch post does not mention MCP. Community work that exists:

| Project | What it is |
|---|---|
| [minking/mybox-mcp](https://github.com/minking/mybox-mcp) | MCP server in TypeScript covering all 20 endpoints, including delete and trash |
| [oliverne/myboxctl](https://github.com/oliverne/myboxctl) | CLI for file operations (`@oliverne/myboxctl` on npm) |
| [overworks/php-mybox](https://github.com/overworks/php-mybox) | PHP SDK, plus a Go CLI and a Flysystem adapter by the same author |
| [chiwanpark/mybox-s3](https://github.com/chiwanpark/mybox-s3) | S3-compatible API in front of MYBOX |

This one is Python, exposes a deliberately smaller surface (no delete), paces itself under the
documented rate limits, and ships tests that need neither a token nor the network. Pick whichever
fits; if you want every endpoint including destructive ones, the TypeScript server above has them.

## Development

```bash
pip install -e ".[dev]"
pytest
```

Tests run against `httpx.MockTransport`; no token or network needed.

Releases are published from GitHub Actions on a GitHub release: PyPI via Trusted Publishing
(no stored token) and the MCP registry via GitHub OIDC.

## License

MIT

Lo que la gente pregunta sobre naver-mybox-mcp

¿Qué es java-jaydev/naver-mybox-mcp?

+

java-jaydev/naver-mybox-mcp es mcp servers para el ecosistema de Claude AI. MCP server for the NAVER MYBOX Open API - list, search, download and upload files Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-13.

¿Cómo se instala naver-mybox-mcp?

+

Puedes instalar naver-mybox-mcp clonando el repositorio (https://github.com/java-jaydev/naver-mybox-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar java-jaydev/naver-mybox-mcp?

+

Nuestro agente de seguridad ha analizado java-jaydev/naver-mybox-mcp y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene java-jaydev/naver-mybox-mcp?

+

java-jaydev/naver-mybox-mcp es mantenido por java-jaydev. La última actividad registrada en GitHub es del 2026-09-13, con 0 issues abiertos.

¿Hay alternativas a naver-mybox-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega naver-mybox-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: java-jaydev/naver-mybox-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/java-jaydev-naver-mybox-mcp)](https://claudewave.com/repo/java-jaydev-naver-mybox-mcp)
<a href="https://claudewave.com/repo/java-jaydev-naver-mybox-mcp"><img src="https://claudewave.com/api/badge/java-jaydev-naver-mybox-mcp" alt="Featured on ClaudeWave: java-jaydev/naver-mybox-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a naver-mybox-mcp