Hiplay.OpenAPIapi.hiplay.kr
MODEL CONTEXT PROTOCOL

Called directly by AI agents
MCP Server.

Register a single endpoint in Claude Desktop · Claude Code · other MCP-compatible clients and all 14 Hiplay OpenAPI tools are exposed automatically.

MCP server endpoint
https://api.hiplay.kr/mcp
Transport: HTTP (JSON-RPC 2.0)Protocol: 2024-11-05Auth: Bearer14 tools

Getting started (3 steps)

1. Issue an API Key

Issue a new key on the API Keys page in the console. The issued secret (oai_...) is shown only once.

2. Register with your MCP client

Refer to the per-client guides below to register the endpoint and key.

3. Call instantly

The AI agent automatically recognizes the tool list and calls tools directly when needed.

Per-client setup

Claude Code (CLI)

Recommended

Register in one line from the terminal:

claude mcp add hiplay-openapi --transport http \
  https://api.hiplay.kr/mcp \
  --header "Authorization: Bearer oai_xxxxxxxxxxxxx..."

Claude Desktop

~/.claude/claude_desktop_config.json (Windows: %APPDATA%\Claude\claude_desktop_config.json) add to:

{
  "mcpServers": {
    "hiplay-openapi": {
      "url": "https://api.hiplay.kr/mcp",
      "headers": {
        "Authorization": "Bearer oai_xxxxxxxxxxxxx..."
      }
    }
  }
}

Restart Claude Desktop after configuring.

Other MCP clients (Cursor, OpenAI Codex, etc.)

Most MCP clients support the same pattern (URL + Authorization header). Enter the information above in each client's add-MCP-server UI.

Exposed tools (14)

reverseen2koko2enhangulifygrammarkorcenrandom_numbershorten_urlcaptchacaptcha_verifyqr_codeillustweathergithub_userlyrics

Security / operations policy

Separate keys recommended

Issue a dedicated key for MCP use, and also set an IP whitelist so it can be revoked immediately if leaked.

Same limits applied

MCP calls are also counted in the same per-minute/day/month counters as regular REST. Usage can be checked in real time in the console.

Unified call logs

MCP tool calls also appear in the console logs, and the endpoint is recorded identically as the v1 path.

Maintenance mode applied automatically

When an admin switches a specific endpoint to maintenance mode, MCP calls also return 503 in the same way.

Direct JSON-RPC calls (for debugging)

You can verify directly with cURL without an MCP client.

# 도구 목록 조회 (인증 불필요)
curl -X POST https://api.hiplay.kr/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

# 도구 호출 (Bearer 필요)
curl -X POST https://api.hiplay.kr/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer oai_xxxxxxxx..." \
  -d '{
    "jsonrpc":"2.0","id":2,"method":"tools/call",
    "params":{"name":"reverse","arguments":{"text":"hello"}}
  }'

Register right now

Sign up, issue a key → register with your MCP client → AI agents instantly use all 14 tools.