count_clipboard_words
Count words from clipboard text, using space separation for English and morphological analysis for Japanese. Supports language-specific word counting accuracy.
Instructions
テキストの単語数を計測します。英語ではスペースで区切られた単語をカウントし、日本語では形態素解析を使用します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | テキストの言語 (en: 英語, ja: 日本語) | en |
text | Yes | 単語数をカウントするテキスト |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"default": "en",
"description": "テキストの言語 (en: 英語, ja: 日本語)",
"enum": [
"en",
"ja"
],
"type": "string"
},
"text": {
"description": "単語数をカウントするテキスト",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}