Skip to main content
Glama
iwaohig

LINE WORKS AiNote (unofficial)

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_notesA

AiNote のノート一覧を新しい順に取得する。要約も文字起こしも含まない。

タイトル・作成日時・音声の長さのみを返す。内容を読むには、
ここで得た noteId を get_note_summary に渡す。

Args:
    count: 取得件数。既定 20。
    cursor: 前回の応答の nextCursor。次ページを取得する場合に指定する。
search_notesA

AiNote のノートをキーワードで検索する。要約も文字起こしも含まない。

検索 API の呼び出し上限は 60 回/分と他より厳しい (ツール側で 1 秒間隔に制限する)。
同じ意図でキーワードを言い換えて繰り返し検索しないこと。
件数が足りない場合は cursor でページを進める。

Args:
    query: 検索キーワード (必須)。
    count: 取得件数。既定 20。
    cursor: 前回の応答の nextCursor。
get_note_summaryA

ノートの AI 要約と参加者を取得する。文字起こし全文は含まない。

ノートの内容を知りたい場合はまずこれを使う。要約で足りない場合にのみ
get_note_transcript で全文を取得する。transcriptBlocks は文字起こしの
発言ブロック数で、全文を取る際の max_blocks の目安になる。

要約はノートの作成者が AiNote 上でテンプレートを選んで生成するもの。
summaries が空の場合は作成者が要約を生成していないので、内容を知るには
get_note_transcript で全文を読む。

Args:
    note_id: ノートID。list_notes または search_notes の結果から得る。
get_note_transcriptA

ノートの文字起こし全文を取得する。

1 時間の会議で数十 KB になる。要約で足りる場合は get_note_summary を使うこと。
発言は `[時刻] 話者: 発言` の形に整形して返す。

Args:
    note_id: ノートID。
    max_blocks: 返す発言ブロックの上限。省略すると全件。

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.7/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct retrieval mode: browsing recent notes, keyword search, AI summary, and full transcript. The descriptions explicitly cross-reference when to use which, so an agent can select unambiguously.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern: list_notes, search_notes, get_note_summary, get_note_transcript. Verbs clearly indicate the operation type and nouns indicate the resource.

Tool Count5/5

Four tools are well-scoped for an unofficial read-only AiNote client. Each tool covers a distinct need without redundancy or bloat.

Completeness5/5

For a read-only note retrieval server, the surface covers browsing, searching, summarized content, and full transcript retrieval. Pagination is provided where needed, and the empty-summary case is handled by directing to the transcript, so there are no dead ends.

Maintenance

ActivityMaintained
ResponsivenessNo issues