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.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Counts the number of characters in a file, excluding spaces and line breaks. Input: filePath (string): The absolute path of the file.
Counts the number of words in a file using space separation for English and morphological analysis for Japanese. Input: filePath (string): The absolute path of the file, language (optional string, default: 'en'): The language of the file.
Counts the number of characters in the provided text, excluding spaces and line breaks. Input: text (string): The text to count.
Counts the number of words in the provided text using space separation for English and morphological analysis for Japanese. Input: text (string): The text to count, language (optional string, default: 'en'): The language of the text.
Performs detailed morphological analysis and linguistic feature analysis on the provided text. Input: text (string): The text to analyze.
Performs detailed morphological analysis and linguistic feature analysis on the specified file. Input: filePath (string): The absolute path of the file.