Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
jp_search_onomatopoeiaA

場面や意味から日本語のオノマトペ(擬音語・擬態語)を検索する。日本語でも英語でも検索できる。

Search Japanese onomatopoeia by scene, meaning, or keyword. Queries may be in Japanese or English.

Args:

  • query (string): 探したい場面や意味。例: "雨が静かに降る", "snow falling silently", "tired"

  • category (string, optional): カテゴリで絞り込む。jp_list_onomatopoeia_categories で一覧を取得できる

  • limit (number): 返す件数の上限 1-20 (default: 5)

Returns: { "query": string, "count": number, "results": [ { "word", "romaji", "type", "categories", "meaning_ja", "meaning_en", "example_ja", "example_en", "nuance" } ], "message": string // 該当なしの場合の案内 }

Examples:

  • "雨が静かに降る様子は?" -> query="雨 静か 降る"

  • "How do I say the sound of heavy rain?" -> query="heavy rain"

  • Don't use when: 特定の語の意味だけを知りたい場合は jp_explain_onomatopoeia を使う

jp_explain_onomatopoeiaA

特定のオノマトペの意味・分類・例文・使い分けのニュアンスを解説する。

Explain the meaning, category, example sentence, and nuance of a specific Japanese onomatopoeia.

Args:

  • word (string): 見出し語またはローマ字。例: "しんしん", "shinshin"

Returns: { "found": boolean, "entry": { "word", "romaji", "type", "categories", "meaning_ja", "meaning_en", "example_ja", "example_en", "nuance" } | null, "message": string }

Examples:

  • 「もふもふってどういう意味?」 -> word="もふもふ"

  • "What does dokidoki mean?" -> word="dokidoki"

Error Handling:

  • 収録されていない語の場合は found=false を返し、jp_search_onomatopoeia の利用を案内する

jp_list_onomatopoeia_categoriesA

収録カテゴリの一覧と、各カテゴリの語数を返す。

List all available categories with the number of entries in each.

Args: なし

Returns: { "total_entries": number, "categories": [ { "id", "name_ja", "name_en", "count" } ] }

Examples:

  • 「どんな種類のオノマトペが入ってる?」 -> 引数なしで呼び出す

jp_browse_onomatopoeiaA

カテゴリや分類(擬音語・擬態語など)で絞り込んで一覧を取得する。

Browse onomatopoeia filtered by category and/or linguistic type, with pagination.

Args:

  • category (string, optional): カテゴリID。jp_list_onomatopoeia_categories で確認できる

  • type (string, optional): 'giongo'(擬音語) | 'giseigo'(擬声語) | 'gitaigo'(擬態語) | 'gijougo'(擬情語)

  • limit (number): 返す件数 1-50 (default: 20)

  • offset (number): 読み飛ばす件数 (default: 0)

Returns: { "total": number, "count": number, "offset": number, "has_more": boolean, "results": [ { ...entry } ], "message": string }

Examples:

  • 「食感のオノマトペを一覧で見せて」 -> category="taste"

  • 「擬情語だけ見たい」 -> type="gijougo"

jp_random_onomatopoeiaA

ランダムにオノマトペを取り出す。日本語学習のクイズや「今日の一語」に使える。

Pick random onomatopoeia entries. Useful for daily-word features and quizzes.

Args:

  • count (number): 取り出す件数 1-10 (default: 1)

  • category (string, optional): カテゴリで絞り込む

Returns: { "count": number, "results": [ { ...entry } ], "message": string }

Examples:

  • 「今日のオノマトペを1つ教えて」 -> count=1

  • 「食感の語で3問クイズを作って」 -> count=3, category="taste"

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/h-kazuki-pixel/jp-onomatopoeia-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server