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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Counts the number of characters in a file, excluding spaces and line breaks. Input: filePath (string): Absolute path of the file to count characters.
Counts the number of words in a file using space as a delimiter for English and morphological analysis for Japanese. Input: filePath (string): Absolute path of the file; language (string, optional, default: 'en'): Language of the file.
Counts the number of characters in the provided text, excluding spaces and line breaks. Input: text (string): Text to count characters.
Counts the number of words in the provided text using space as a delimiter for English and morphological analysis for Japanese. Input: text (string): Text to count words; language (string, optional, default: 'en'): Language of the text.
Performs detailed morphological analysis and linguistic feature analysis of the provided text, including sentence complexity, part-of-speech ratios, and vocabulary diversity. Input: text (string): Text to analyze.
Performs detailed morphological analysis and linguistic feature analysis of the specified file, including sentence complexity, part-of-speech ratios, and vocabulary diversity. Input: filePath (string): Absolute path of the file to analyze.