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 path to the file (recommended absolute path in Windows or WSL/Linux format). Output: The character count (actual character count excluding spaces and line breaks).
Counts the number of words in a file. Input: filePath (string): The path to the file (recommended absolute path in Windows or WSL/Linux format), language (string, optional, default: 'en'): The language of the file (en: English, ja: Japanese). Output: The word count of the file, with detailed results of morphological analysis in Japanese mode.
Counts the number of characters in the provided text, excluding spaces and line breaks. Input: text (string): The text to count characters. Output: The character count (actual character count excluding spaces and line breaks).
Counts the number of words in the provided text. Input: text (string): The text to count words, language (string, optional, default: 'en'): The language of the text (en: English, ja: Japanese). Output: The word count of the text, with detailed results of morphological analysis in Japanese mode.
Performs detailed morphological analysis and linguistic feature analysis of the provided text. Input: text (string): The text to analyze. Output: Basic information about the text (total character count, number of sentences, total number of morphemes) and detailed analysis results (average sentence length, ratio of parts of speech, ratio of character types, vocabulary diversity, etc.).
Performs detailed morphological analysis and linguistic feature analysis of the specified file. Input: filePath (string): The path to the file (recommended absolute path in Windows or WSL/Linux format). Output: Basic information about the file (total character count, number of sentences, total number of morphemes) and detailed analysis results (average sentence length, ratio of parts of speech, ratio of character types, vocabulary diversity, etc.).