Back to MCP Servers

Melon MCP Server

Provider-hosted MCP server from Kakao Entertainment that connects AI agents to Melon, Korea's largest music streaming service, for chart data and personalized music actions.

Entertainment by Kakao Entertainment OAuth2 active
Overview

Melon MCP is a remote MCP server built by Kakao Entertainment that exposes Melon, Korea's largest music streaming platform, to AI agents like Claude and ChatGPT. It is distributed through Kakao's PlayMCP platform, an MCP marketplace that hosts Kakao's own services (KakaoTalk chat-with-myself, Talk Calendar, Kakao Map, Gift, Melon) alongside roughly 200 third-party MCP servers. Users connect once with their Kakao account and add Melon to their PlayMCP Toolbox, which can then be linked to Claude as a Custom Connector or to ChatGPT via Developer Mode.

The server is designed for music discovery and personalized listening. Public examples published by Kakao show prompts like "tell me what songs are popular right now" returning live Melon chart data, and "play the songs I listened to on Melon on this day last year" pulling personal listening history. Because authentication runs through the user's Kakao account, the server can mix public catalog data (charts, search, artist info) with private user data (history, playlists) without each tool needing its own login.

Melon MCP is not an open-source project. There is no public GitHub repository, no published tool list, and no self-hostable distribution. The only supported way to use it is through PlayMCP. Documentation is currently limited to Kakao Entertainment's tech blog post and the PlayMCP product page on Claude's connector directory.

Tools

Tool Description
Melon chart lookup Returns current Melon chart data (for example TOP 100, real-time chart) for prompts like "what songs are popular right now". Exact tool name is not published.
Personal listening history Retrieves the authenticated user's Melon listening history and plays past tracks, as in the documented example "play the songs I listened to on Melon on this day last year".
Music playback / queue actions Triggers playback or queues tracks in the user's Melon account. Implied by PlayMCP's stated read and write capability for the Melon connector.
Setup Guide

Melon MCP is not installed as a standalone server. It is accessed through Kakao's PlayMCP platform, which acts as a gateway to Kakao services including Melon.

Prerequisites

  • A Kakao account (free signup at kakao.com)
  • A Melon account linked to your Kakao ID for personalized features
  • An AI client that supports remote MCP / Custom Connectors (Claude, ChatGPT with Developer Mode, or the PlayMCP web app)

Step 1: Add Melon to your PlayMCP Toolbox

  • Visit https://playmcp.kakao.com/
  • Log in with your Kakao account
  • Browse the catalog and add Melon to your Toolbox

Step 2: Connect from Claude

  • Open Claude, go to Settings, then Connectors
  • Add the PlayMCP connector (also available at https://claude.com/connectors/playmcp)
  • Authenticate with the Kakao account you used in Step 1
  • Your selected Melon tools become available to Claude

Step 3 (alternative): Connect from ChatGPT

  • Enable Developer Mode in ChatGPT settings
  • Register the PlayMCP server URL as a custom MCP server
  • Authenticate with your Kakao account

Example MCP client config

Most users connect via the in-product Connectors UI rather than editing JSON. For clients that accept a remote MCP URL directly, the entry point is the PlayMCP server:

{
  "mcpServers": {
    "playmcp": {
      "url": "https://playmcp.kakao.com/"
    }
  }
}

Note: the exact remote MCP endpoint and tool names for Melon are not published in the public documentation. Setup is intended to be done through the PlayMCP web UI and the corresponding Claude or ChatGPT connector flow.

Use Cases
  • Ask an AI agent for the current Melon TOP 100 or real-time chart to see what is trending in Korea right now
  • Replay your personal Melon listening history from a specific date, for example "play what I was listening to on this day last year"
  • Combine Melon with other PlayMCP tools (KakaoTalk, Talk Calendar) so an agent can suggest a song, share it in a chat, and add a related event to your calendar
  • Use Claude or ChatGPT as a Korean music discovery assistant that pulls live data from the country's largest streaming service instead of stale training data
Example Prompts
  • "What are the top 10 songs on the Melon chart right now?"
  • "Play the songs I was listening to on Melon on this day last year."
  • "Find the most popular K-pop ballads on Melon this week and make me a playlist."
  • "Recommend Korean indie songs trending on Melon and share my favorite to my KakaoTalk chat with myself."
  • "Which artists climbed the Melon chart the most in the last 7 days?"
Pros
  • Official Kakao Entertainment connector to Melon, the dominant music streaming service in Korea, so data is authoritative and live
  • Single Kakao account sign-in unlocks Melon plus other Kakao services (KakaoTalk, Map, Calendar, Gift) through the same PlayMCP Toolbox
  • Works as a remote Custom Connector in Claude and as a custom MCP server in ChatGPT Developer Mode, with no local install required
Limitations
  • Closed-source and provider-hosted only: no GitHub repo, no published tool schema, and no way to self-host
  • Documentation is sparse: Kakao's tech blog post and the PlayMCP product page are the only references, and they do not enumerate the available tools
  • Tied to the Kakao account ecosystem and primarily focused on the Korean market, so usefulness outside Korea is limited
Alternatives
  • Spotify MCP servers (community implementations such as spotify-mcp on GitHub) for global music streaming control
  • Apple Music or YouTube Music via generic HTTP MCP wrappers if you need non-Korean catalogs
  • Community Melon chart scrapers (for example gold24park/melon-chart.py or hyunchel/melon-chart-api) wrapped in a custom MCP server when you only need public chart data and not a Kakao account