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.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Counts the number of characters in a file, excluding spaces and line breaks. Input parameter: filePath (string): The absolute path of the file.
Counts the number of words in a file, using morphological analysis for Japanese. Input parameters: filePath (string): The absolute path of the file, language (optional string, default: 'en'): The language of the file (en: English, ja: Japanese).
Counts the number of characters in the provided text, excluding spaces and line breaks. Input parameter: text (string): The text to count characters for.
Counts the number of words in the provided text, using morphological analysis for Japanese. Input parameters: text (string): The text to count words for, language (optional string, default: 'en'): The language of the text (en: English, ja: Japanese).
Performs detailed morphological analysis and linguistic feature analysis of the provided text. Input parameter: text (string): The text to analyze.
Performs detailed morphological analysis and linguistic feature analysis of the provided file. Input parameter: filePath (string): The absolute path of the file to analyze.