A server that provides Japanese text analysis capabilities through morphological parsing using the Kuromoji library. It enables AI assistants to break down Japanese sentences into their component parts, identifying words, their grammatical functions, readings, and base forms. This implementation makes it possible to analyze complex Japanese text structures programmatically through the MCP protocol, making it valuable for language learning applications, translation tools, and natural language processing tasks that require detailed understanding of Japanese grammar and vocabulary.
暂无评论. 成为第一个评论的人!
登录以参与讨论
ファイルの文字数を計測します。絶対パスを指定してください。スペースや改行を除いた実質的な文字数をカウントします。入力: filePath (string): ファイルのパス。出力: ファイルの文字数。
ファイルの単語数を計測します。絶対パスを指定してください。入力: filePath (string): 単語数をカウントするファイルのパス。language (string, optional): ファイルの言語。出力: ファイルの単語数と日本語モードの場合は形態素解析の詳細結果。
テキストの文字数を計測します。入力: text (string): 文字数をカウントするテキスト。出力: テキストの文字数。
テキストの単語数を計測します。入力: text (string): 単語数をカウントするテキスト。language (string, optional): テキストの言語。出力: テキストの単語数と日本語モードの場合は形態素解析の詳細結果。
テキストの詳細な形態素解析と言語的特徴の分析を行います。入力: text (string): 分析するテキスト。出力: テキストの基本情報と詳細分析結果。
ファイルの詳細な形態素解析と言語的特徴の分析を行います。入力: filePath (string): 分析するファイルのパス。出力: ファイルの基本情報と詳細分析結果。