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.
No reviews yet. Be the first to review!
Sign in to join the conversation
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. Input: filePath (string): The absolute path of the file, language (optional string, default: 'en'): The language of the file (en: English, ja: Japanese).
Count the number of characters in a given text, excluding spaces and line breaks. Input: text (string): The text to count characters.
Count the number of words in a given text. Input: text (string): The text to count words, language (optional string, default: 'en'): The language of the text (en: English, ja: Japanese).
Perform detailed morphological analysis and linguistic feature analysis of the text. Input: text (string): The text to analyze.
Perform detailed morphological analysis and linguistic feature analysis of a file. Input: filePath (string): The absolute path of the file to analyze.