yahoo-furigana-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@yahoo-furigana-mcpAdd furigana to '漢字の読み方を教えてください'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Yahoo! ふりがな API MCP サーバ
Yahoo! JAPAN テキスト解析のふりがなAPI(V2)を利用したMCPサーバです。
日本語テキストにふりがな(ひらがな読み)やローマ字を付けることができます。
必要な環境
Node.js 18以上
Yahoo! JAPAN デベロッパーネットワークの Client ID(アプリケーションID)
Yahoo! ID連携 v2 アプリケーションの登録から取得できます
Related MCP server: Yomitan MCP Server
セットアップ
1. 依存関係のインストール
npm install2. ビルド
npm run buildClaude Desktop での設定
方法1: npx経由で実行(推奨)
ローカルにリポジトリを配置せず、npm経由で実行する方法です。
claude_desktop_config.json に以下を追加してください:
{
"mcpServers": {
"yahoo-furigana": {
"command": "npx",
"args": ["-y", "yahoo-furigana-mcp"],
"env": {
"YAHOO_CLIENT_ID": "あなたのClient ID"
}
}
}
}方法2: ローカルから実行
リポジトリをクローンして実行する方法です。
claude_desktop_config.json に以下を追加してください:
{
"mcpServers": {
"yahoo-furigana": {
"command": "node",
"args": ["/path/to/yahoo-furigana-mcp/dist/index.js"],
"env": {
"YAHOO_CLIENT_ID": "あなたのClient ID"
}
}
}
}/path/to/yahoo-furigana-mcp は実際のパスに置き換えてください。
提供するツール
gen_furigana
日本語テキストにふりがなを付けます。
パラメータ
名前 | 型 | 必須 | 説明 |
| string | ○ | ふりがなを付けたい日本語テキスト |
| number | - | 学年指定(1-8)。指定した学年までに習う漢字にはふりがなを付けません |
| string | - | 出力形式(デフォルト: |
output_format の値
値 | 説明 | 出力例 |
| HTMLルビ形式(デフォルト) |
|
| 括弧形式 |
|
| ローマ字付き詳細形式 |
|
grade の値
値 | 対象 |
1 | 小学1年生までに習う漢字 |
2 | 小学2年生までに習う漢字 |
3 | 小学3年生までに習う漢字 |
4 | 小学4年生までに習う漢字 |
5 | 小学5年生までに習う漢字 |
6 | 小学6年生までに習う漢字 |
7 | 中学生までに習う漢字 |
8 | それ以上 |
使用例
ruby形式(デフォルト):
入力: "漢字の読み方"
出力: "<ruby>漢字<rt>かんじ</rt></ruby>の<ruby>読<rt>よ</rt></ruby>み<ruby>方<rt>かた</rt></ruby>"bracket形式:
入力: "漢字の読み方を教えてください"
出力: "漢字(かんじ)の読(よ)み方(かた)を教(おし)えてください"特徴
自動チャンク分割: 4KBを超える長いテキストも自動的に分割して処理します。文の区切り(。!?など)で分割するため、自然な結果が得られます。
npm公開(開発者向け)
このパッケージをnpmに公開する手順:
# ビルド
npm run build
# パッケージの内容を確認
npm pack --dry-run
# npmにログイン(初回のみ)
npm login
# 公開
npm publish公開後、ユーザーは npx yahoo-furigana-mcp でローカルにリポジトリを配置せずに利用できます。
制限事項
Yahoo! JAPAN APIの利用規約に従ってください
ライセンス
MIT
Available Tools
1 toolgen_furiganaA
日本語テキストにふりがな(ひらがな読み)を付けます。漢字かな混じりのテキストを入力すると、各単語の読み方を返します。
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ふりがなを付けたい日本語テキスト | |
| grade | No | 学年指定(1-8)。指定した学年までに習う漢字にはふりがなを付けません。1=小1, 2=小2, ..., 6=小6, 7=中学, 8=それ以上 | |
| output_format | No | 出力形式。bracket=括弧形式「漢字(かんじ)」、ruby=HTMLルビ形式「<ruby>漢字<rt>かんじ</rt></ruby>」、roman=ローマ字付き詳細形式(デフォルト: ruby) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only says the tool 'returns readings for each word,' but does not explain whether it returns the full annotated text, how unknown words are handled, or what output format the default implies. This is a meaningful gap for a transformation tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. It front-loads the core action (adding furigana) and immediately gives the input/output relationship. Every sentence earns its place and the structure is easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple tool given the fully documented schema, but with no output schema it leaves the return shape somewhat ambiguous: does it return annotated text, a list of word-readings, or something else? It also does not mention default behavior for grade or output_format, though the schema covers those defaults implicitly. This is a clear but not severe completeness gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description does not add parameter-specific semantics beyond what the schema already provides, but it also does not need to compensate for undocumented parameters. The overall function description aligns with the text parameter, though it adds little for grade or output_format.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb and resource: it adds furigana (hiragana readings) to Japanese text. It also clarifies the expected input type (kanji-kana mixed text) and the output (readings for each word), making the purpose unambiguous even without siblings to differentiate from.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: use this tool when you have Japanese kanji-kana mixed text and need furigana readings. There are no sibling tools and no explicit exclusions, but the input condition is stated directly enough for an agent to determine when to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.1.0- First observed
gen_furigana
TDQS
With only a single tool, there is no possibility of confusion or overlap. The tool's purpose is clearly distinct by default.
The single tool name follows a clear verb_noun pattern (gen_furigana) with no mixed naming conventions. Consistency is trivially maintained.
A single tool is below the reasonable range for a well-scoped server and feels overly thin, even for a narrow purpose. The rubric explicitly treats 1 tool as too few.
The server covers the core furigana generation operation for the domain. Minor gaps like configurable output formats or batchprocessing exist but are not critical.
Maintenance
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
39 Japanese locale APIs — wareki, NTA invoice, 法人番号, postal, romanization, kanji-kana (Workers AI).
- potto-japanOAuthapp.potto
Authoritative JLPT-graded Japanese dataset (kanji, vocab, grammar, history) via MCP and REST.
Japan data tools for AI agents: calendar (rokuyo), address, name splitting, corporate number lookup
Normalize and verify Japanese postal addresses into structured fields for agents.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables text-to-speech generation through the Omotenashi QR API, supporting multiple languages (Japanese, English, Chinese, Korean) with customizable voice speakers and speed settings.-
- AlicenseAqualityCmaintenanceProvides AI agents with direct access to local Yomitan dictionary databases for offline Japanese vocabulary lookups, kanji searches, and sentence tokenization. It leverages the Yomitan browser extension's API to enable rich dictionary interactions and Anki flashcard field generation.5136Mozilla Public 2.0
- FlicenseBqualityDmaintenanceEnables searching Japanese addresses by 7-digit zip code using the zipcloud API.1-
- AlicenseNot gradedqualityCmaintenanceTorify gives AI agents the Japanese locale primitives that standard libraries lack — imperial era date conversion (wareki), qualified invoice number validation with NTA registry lookup, corporate number lookup (法人番号), postal code resolution, name romanization (Hepburn), and kanji-to-kana conversion via Yahoo! JLP. 31 endpoints total. No authentication required for MCP. Pay-per-call $0.02/call viaMIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/analekt/yahoo-furigana-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server