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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Count the number of characters in a file, excluding spaces and line breaks. Input: filePath (string) - The absolute path of the file.
Count the number of words in a file using space delimiters for English and morphological analysis for Japanese. Input: filePath (string), language (optional string, default: 'en').
Count the number of characters in a given text, excluding spaces and line breaks. Input: text (string) - The text to analyze.
Count the number of words in a given text using space delimiters for English and morphological analysis for Japanese. Input: text (string), language (optional string, default: 'en').
Perform detailed morphological analysis and linguistic feature analysis on a given text. Input: text (string) - The text to analyze.
Perform detailed morphological analysis and linguistic feature analysis on a given file. Input: filePath (string) - The absolute path of the file.