Skip to main content
Glama
devRonPark

Harutalk Japanese Coach MCP

by devRonPark

하루톡 일본어 코치 MCP

한국어 카카오톡 문장을 자연스러운 일본어로 변환하고, 초급 학습자를 위한 발음·표현 설명·복습 카드·퀴즈를 제공하는 MCP 서버입니다.

문서

Related MCP server: Greeting & Image Generation MCP Server

설치

git clone https://github.com/your-repo/kakao-playmcp.git
cd kakao-playmcp
npm install
npm run build

환경 변수 설정

export ANTHROPIC_API_KEY=sk-ant-...

MCP 클라이언트 설정 (Claude Desktop 예시)

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "harutalk-japanese-coach": {
      "command": "node",
      "args": ["/absolute/path/to/kakao-playmcp/dist/index.js"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

서버 직접 실행

ANTHROPIC_API_KEY=sk-ant-... node dist/index.js

제공 Tool 목록

translate_kakao_message

한국어 문장을 자연스러운 일본어로 변환합니다. 로마자 발음(Hepburn), 핵심 표현 분해, 말투별 대안 표현을 함께 반환합니다.

파라미터

타입

기본값

설명

korean_text

string

필수

번역할 한국어 문장

relationship

enum

unknown

상대방 관계 (friend/coworker/stranger 등)

tone

enum

natural

원하는 말투 (casual/polite/cute 등)

learner_level

enum

absolute_beginner

학습자 수준

correct_japanese_sentence

사용자가 작성한 일본어(또는 로마자) 문장을 교정하고 어색한 이유를 초급자 기준으로 설명합니다.

파라미터

타입

기본값

설명

user_sentence

string

필수

교정받을 문장

intended_meaning

string

-

의도한 의미 (선택)

learner_level

enum

absolute_beginner

학습자 수준

explain_expression

일본어 표현을 초급자가 이해하기 쉽게 설명합니다. 예문과 로마자 발음 포함.

파라미터

타입

기본값

설명

expression

string

필수

설명받을 일본어 표현

context

string

-

표현의 사용 맥락 (선택)

learner_level

enum

absolute_beginner

학습자 수준

create_review_card

표현을 복습 카드로 저장합니다. 저장된 카드는 퀴즈 생성에 활용됩니다.

파라미터

타입

설명

expression

string

일본어 표현

romanization

string

로마자 발음

korean_meaning

string

한국어 뜻

difficulty

enum

난이도 (easy/normal/hard)

generate_daily_quiz

저장된 복습 카드로 1분 퀴즈를 생성합니다.

파라미터

타입

기본값

설명

quiz_count

number

3

문제 수 (1~10)

focus

enum

mixed

출제 유형 (meaning/pronunciation/expression/grammar/mixed)

level

enum

absolute_beginner

학습자 수준

reveal_answers

boolean

false

정답 즉시 표시 여부

응답 포맷

모든 일본어 문장은 3단 구조로 반환됩니다:

今日ちょっと遅れそう。
(Kyou chotto okuresou.)
오늘 조금 늦을 것 같아.

라이선스

MIT

Available Tools

5 tools
correct_japanese_sentenceB

사용자가 직접 작성한 일본어 문장을 교정하고, 왜 어색한지 초급자 기준으로 설명합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
toneNounknown
learner_levelNoabsolute_beginner
user_sentenceYes사용자가 작성한 일본어 문장 또는 로마자 문장
intended_meaningNo

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description bears full responsibility for behavioral disclosure. It states the tool corrects and explains awkwardness, but does not disclose important traits such as whether it modifies the sentence, requires authenticity, or any limitations (e.g., only works for Japanese, input constraints). The behavior is underspecified.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that gets straight to the point: it corrects and explains. It is concise and front-loaded with the action. However, it omits important details that could be added without bloat, so it does not earn a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of output schema and annotations, and four parameters (three optional) with unclear semantics, the description is insufficient. It does not explain what the output format is, how optional parameters affect behavior, or any prerequisites. A correction tool for Japanese sentences requires more context for reliable use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 25% (only user_sentence has a description). The tool's description adds little beyond restating user_sentence as a user-written Japanese sentence. It does not explain the roles of tone, learner_level, or intended_meaning parameters, leaving the agent to infer their impact from enum names alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb (교정하다 - correct, 설명하다 - explain) and the resource (일본어 문장 - Japanese sentence). It specifies the audience (초급자 기준 - beginner level) and implies it is for self-written sentences. This distinguishes it from sibling tools like 'translate_kakao_message' or 'explain_expression'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for correcting user-written Japanese sentences, but does not provide explicit when-to-use or when-not-to-use guidance. There is no mention of alternatives or conditions that would make this tool more appropriate than siblings, such as 'explain_expression' for individual expressions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_review_cardC

배운 일본어 표현을 복습 카드로 저장합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
readingNo
difficultyNonormal
expressionYes
romanizationYes
korean_meaningYes
example_sentenceNo

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must convey behavioral traits. It only states 'saves' without any details on side effects, authentication needs, or data persistence. This is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no waste. It is front-loaded and directly states the purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters (3 required) and no output schema, the description is incomplete. It lacks details on usage, parameters, and expected behavior, leaving significant gaps for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description should compensate. However, it does not explain any parameter meaning, leaving agents to infer from parameter names alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: saving learned Japanese expressions as review cards. It uses a specific verb ('saves') and resource ('review cards'), and is distinct from sibling tools like correcting sentences or explaining expressions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The description does not mention prerequisites, exclusions, or context for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

explain_expressionB

일본어 표현을 초급 학습자 기준으로 설명합니다. 읽기, 로마자 발음, 뜻, 사용 상황, 예문을 제공합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
expressionYes설명을 원하는 일본어 표현 또는 문장
learner_levelNoabsolute_beginner

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, and the description does not disclose behavioral traits like side effects, authentication needs, or rate limits. Assumes read-only but not stated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single concise sentence in Korean. Front-loaded and free of fluff. Adequately sized for the tool's simplicity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description lists the main output components (reading, romanization, meaning, usage, examples). Missing details on response structure or error handling, but sufficient for its purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 33% (only 'expression' has a description). The tool description adds high-level output details but does not explain how parameters like 'context' or 'learner_level' affect the output. Does not compensate for low coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it explains Japanese expressions for beginner learners, listing specific output elements (reading, romanization, meaning, usage, examples). This distinguishes it from siblings like correct_japanese_sentence or translate_kakao_message.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus siblings. Does not specify context, prerequisites, or exclusions. Implicitly for explaining expressions, but lacks direct comparison with alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_daily_quizC

저장된 복습 카드를 바탕으로 1분 안에 풀 수 있는 퀴즈를 생성합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
focusNomixed
levelNoabsolute_beginner
quiz_countNo
reveal_answersNo

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the burden. It mentions the source (review cards) and time limit, but does not disclose how cards are selected, what happens if no cards exist, or how parameters affect behavior. Significant gaps remain.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no wasted words. It is front-loaded and efficient, though slightly too brief given the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, no output schema, and no annotations, the description is incomplete. It does not explain quiz format, parameter effects, or expected output, making it insufficient for reliable agent use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%; the description adds no meaning to any of the 4 parameters (focus, level, quiz_count, reveal_answers). It fails to explain their purpose, defaults, or options, leaving the agent without guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the verb '생성합니다' (generates) and resource '퀴즈' (quiz) based on saved review cards. It distinguishes from siblings by specifying the quiz generation focus and time constraint (1 minute), though it could be more explicit about quiz format.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides context (based on review cards, within 1 minute) but gives no explicit guidance on when to use this tool versus alternatives. It does not mention when not to use it or compare with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

translate_kakao_messageB

한국어 카카오톡 문장을 자연스러운 일본어로 변환합니다. 초급 학습자를 위해 로마자 발음, 한국어 뜻, 핵심 표현 설명을 함께 제공합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
toneNonatural
korean_textYes일본어로 바꾸고 싶은 한국어 문장
relationshipNounknown
learner_levelNoabsolute_beginner
include_romanizationNo
include_expression_breakdownNo

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must cover behavioral traits. It states the tool provides romanization, meaning, and expression breakdown, but does not describe whether the operation is read-only, if it requires authentication, any rate limits, or what the output format looks like. Transparency is minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence in Korean that effectively communicates the core purpose and key features. No redundant information; it is front-loaded and concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (6 parameters, 3 enums, no output schema), the description lacks detail on output structure, the role of tone and relationship, and how the multiple outputs (translation, romanization, breakdown) are returned. It is insufficient for an agent to fully understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is low (17%), but the description adds meaning for learner_level (beginner), include_romanization, and include_expression_breakdown via the stated output components. However, the tone and relationship parameters are not explained, leaving ambiguity in how they affect translation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool converts Korean KakaoTalk sentences to natural Japanese, specifying the target output includes romanization, Korean meaning, and expression breakdown for beginners. This distinguishes it from sibling tools like correct_japanese_sentence (correction) or explain_expression (explanation of given expression).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for beginners but does not explicitly state when to use this tool over siblings (e.g., for translation vs. correction). No exclusions or alternatives are mentioned; usage context is only implied by the tool name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

B3.3/5.0
Disambiguation4/5

Tools have mostly distinct purposes: correcting sentences, saving cards, explaining expressions, generating quizzes, and translating from Korean. Minor potential overlap between 'correct_japanese_sentence' and 'explain_expression' as both involve explanations, but one is for user-written sentences and the other for given expressions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscore_case: correct_japanese_sentence, create_review_card, explain_expression, generate_daily_quiz, translate_kakao_message.

Tool Count5/5

With 5 tools, the server is well-scoped for a language coach. The count is neither too few to be useful nor too many to be overwhelming.

Completeness4/5

The tool set covers core learning activities: correction, review storage, explanation, quiz generation, and translation. Missing features like vocabulary lists or pronunciation, but the domain is adequately covered for a beginner-focused coach with Korean translation.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides Japanese UX conventions as an MCP server to help AI generate correct Japanese UI elements like proper name order, furigana, phone formats, and polite language. It includes tools for form generation, validation, keigo suggestions, and cultural adaptation for developers building Japanese-facing products.
    6
    214
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables Japanese word lookup and search using the Jisho.org dictionary, providing tools to search entries and retrieve exact word definitions with JLPT levels and parts of speech.
    2
    2
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/devRonPark/kakao-playmcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server