Skip to main content
Glama
BarredEwe

time-messenger-mcp-server

by BarredEwe

time-messenger-mcp-server

MCP (Model Context Protocol) сервер для корпоративного мессенджера Time Messenger (на базе Mattermost) от Т-Банка.

Позволяет AI-ассистентам (Claude, OpenCode и др.) работать с Time Messenger: читать и отправлять сообщения, управлять тредами, искать каналы и пользователей, отслеживать непрочитанные сообщения.

Установка

Вариант 1: npx (без установки)

npx time-messenger-mcp-server

Вариант 2: глобальная установка

npm install -g time-messenger-mcp-server
time-messenger-mcp-server

Вариант 3: из исходников

git clone https://github.com/BarredEwe/time-messenger-mcp-server.git
cd time-messenger-mcp-server
npm install
npm run build
node dist/index.js

Related MCP server: mattermost-mcp

Настройка

Переменные окружения

Переменная

Описание

Обязательно

TIME_URL

URL вашего экземпляра Time Messenger

Да

TIME_TOKEN

Personal Access Token

Один из способов

TIME_LOGIN_ID

Email или логин

Один из способов

TIME_PASSWORD

Пароль

Вместе с LOGIN_ID

TIME_REQUEST_TIMEOUT_MS

Таймаут запроса к API, мс (по умолчанию 30000)

Нет

TIME_USER_AGENT

Переопределить User-Agent для запросов к API

Нет

Способ 1: Personal Access Token (рекомендуется)

Personal Access Token — постоянный токен, который не истекает.

Как получить:

  1. Откройте Time Messenger в браузере

  2. Аватарка → Настройки аккаунтаБезопасностьПерсональные токены доступа

  3. Создайте токен с описанием "MCP Server"

  4. Скопируйте токен (показывается только один раз!)

Способ 2: Логин и пароль

Токен сессии получается автоматически. Если включена MFA — потребуется ввести код через tool login_with_mfa.

Способ 3: OAuth2

Только для веб-приложений (требует браузерный редирект). Документация

Интеграция с AI-клиентами

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

С токеном:

{
  "mcpServers": {
    "time": {
      "command": "npx",
      "args": ["-y", "time-messenger-mcp-server"],
      "env": {
        "TIME_URL": "https://your-instance.time-messenger.ru",
        "TIME_TOKEN": "your_token_here"
      }
    }
  }
}

С логином/паролем:

{
  "mcpServers": {
    "time": {
      "command": "npx",
      "args": ["-y", "time-messenger-mcp-server"],
      "env": {
        "TIME_URL": "https://your-instance.time-messenger.ru",
        "TIME_LOGIN_ID": "your@email.com",
        "TIME_PASSWORD": "your_password"
      }
    }
  }
}

OpenCode

~/.config/opencode/opencode.json:

{
  "mcp": {
    "time": {
      "type": "local",
      "command": ["npx", "-y", "time-messenger-mcp-server"],
      "enabled": true,
      "environment": {
        "TIME_URL": "https://your-instance.time-messenger.ru",
        "TIME_TOKEN": "your_token_here"
      }
    }
  }
}

Любой MCP-совместимый клиент

npx time-messenger-mcp-server

Сервер использует stdio transport — стандартный для MCP.

Доступные инструменты

Аутентификация

Инструмент

Описание

login_with_mfa

Ввести MFA код при двухфакторной авторизации

Сообщения

Инструмент

Описание

send_message

Отправить сообщение в канал или ответить в треде

get_channel_messages

Получить сообщения из канала (с пагинацией)

get_thread_messages

Получить все сообщения в треде

search_messages

Поиск сообщений в команде

Треды

Инструмент

Описание

list_threads

Список отслеживаемых тредов в команде

get_thread_stats

Статистика непрочитанных тредов

get_thread

Информация о конкретном треде

follow_thread

Начать отслеживание треда

unfollow_thread

Прекратить отслеживание треда

mark_thread_read

Отметить тред как прочитанный

Каналы

Инструмент

Описание

list_channels

Список каналов в команде

get_channel

Информация о канале

search_channels

Поиск каналов

get_channel_unread

Непрочитанные сообщения в канале

mark_channels_read

Необратимо отметить каналы прочитанными. В mode: "all" обрабатываются доступные пользователю публичные, приватные, direct и group-каналы, в mode: "selected" требуется явный непустой список ID. Для каждого уникального канала отправляется отдельный запрос Time /view; временные сбои повторяются, а оставшиеся ошибки перечисляются в результате. Отслеживаемые треды не входят в операцию, для них используйте mark_thread_read

Команды

Инструмент

Описание

list_teams

Список команд пользователя

get_team

Информация о команде

get_teams_unread

Непрочитанные во всех командах

get_team_unread

Непрочитанные в конкретной команде

Пользователи

Инструмент

Описание

get_me

Информация о текущем пользователе

get_user

Информация о пользователе по ID

search_users

Поиск пользователей

MFA (двухфакторная аутентификация)

Если на вашем аккаунте включена MFA:

  1. При первом запросе получите ошибку: MFA verification required

  2. Используйте инструмент login_with_mfa с 6-значным кодом из аутентификатора

  3. После успешного ввода все инструменты будут работать до конца сессии

Разработка

# Установка зависимостей
npm install

# Сборка
npm run build

# Разработка
npm run dev

# Проверка типов
npm run typecheck

Структура проекта

src/
├── index.ts              # MCP сервер
├── client/
│   └── time-client.ts    # Time API клиент
├── tools/
│   ├── auth.ts           # MFA аутентификация
│   ├── messages.ts       # Сообщения
│   ├── threads.ts        # Треды
│   ├── channels.ts       # Каналы
│   ├── teams.ts          # Команды
│   ├── users.ts          # Пользователи
│   └── types.ts          # Типы инструментов
└── types/
    └── time-api.ts       # TypeScript типы для Time API

API документация

Требования

  • Node.js 18+

Лицензия

MIT

Available Tools

22 tools
follow_threadA

Start following a thread to receive notifications

ParametersJSON Schema
NameRequiredDescriptionDefault
thread_idYesThread ID (root post ID)

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the primary behavior (following a thread to receive notifications) but does not mention side effects, idempotency, or required permissions. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that directly conveys the action and purpose. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description covers the essential purpose and effect. It does not address potential edge cases like duplicate follows or access requirements, so it is not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents thread_id as 'Thread ID (root post ID)' with 100% coverage, so the description adds no additional parameter meaning. The baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb-resource pair ('Start following a thread') and clearly states the effect ('receive notifications'). This distinguishes it from sibling tools like unfollow_thread and get_thread.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'to receive notifications' provides clear context for when to use the tool. However, it does not mention alternatives or explicitly say when not to use it, so it falls short of a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_channelC

Get information about a specific channel

ParametersJSON Schema
NameRequiredDescriptionDefault
channel_idYesChannel ID

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It only states 'Get information' without detailing what information is returned, error behavior, or whether any special permissions are needed. It adds no context beyond the name and schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no extraneous words, making it highly concise. It is appropriately sized for a simple single-parameter lookup tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, but the description is minimal. Without an output schema, it should at least indicate what 'information' is returned or that it returns channel details; it also fails to situate the tool among related siblings, leaving the agent underinformed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully describes channel_id with 100% coverage. The description does not add additional parameter semantics beyond the generic 'specific channel,' so it earns the baseline score for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the verb 'Get' with the resource 'specific channel', clearly indicating a single-channel retrieval. It distinguishes implicitly from list_channels and search_channels by focusing on a specific channel, but does not explicitly differentiate from get_channel_unread or get_channel_messages.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like get_channel_messages or get_channel_unread. The description lacks exclusions or alternative suggestions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_channel_messagesB

Get messages from a channel with pagination

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 0)
per_pageNoMessages per page (default: 60, max: 200)
channel_idYesChannel ID

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description must fully disclose behavioral traits. It only mentions pagination, which is already evident from the schema. It does not disclose message ordering, authentication needs, rate limits, or how pagination appears in the response.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler. It efficiently communicates the core action and the pagination feature, making it appropriately concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description should clarify return values and expected response structure, but it only says 'get messages'. It also lacks usage guidance and behavioral details such as ordering or response format. The tool is simple, but the description leaves too much unsaid for an agent to fully understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides complete descriptions for all three parameters (channel_id, page, per_page), including defaults and max value. The description adds little beyond the schema, but it does align with the pagination parameters. Baseline 3 is appropriate given high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the operation: retrieving messages from a channel, and explicitly mentions pagination. The 'channel' qualifier distinguishes it from thread-specific siblings like get_thread_messages and search_messages, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives such as search_messages or get_thread_messages. There is no mention of exclusions, prerequisites, or preferred usage contexts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_channel_unreadA

Get unread message count and mentions for a channel

ParametersJSON Schema
NameRequiredDescriptionDefault
channel_idYesChannel ID

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral transparency burden. It clearly labels the operation as a read ('Get') and describes the return content, but it does not explicitly state side effects (e.g., that it does not mark messages read) or authentication requirements. This is minimal but adequate for a simple getter.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, direct and front-loaded. Every word earns its place, with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema), the description sufficiently captures the core function and return value (unread count and mentions). It could benefit from a note on when to use channel-level vs team-level unread, but that is more of a usage guideline than a completeness gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, channel_id, is fully described in the schema as 'Channel ID', giving 100% schema coverage. The tool description adds no further semantics beyond 'for a channel,' so it does not elevate the baseline of 3 for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the verb 'Get' with a clear resource ('unread message count and mentions for a channel'). It distinguishes itself from siblings like get_teams_unread and get_team_unread by specifying channel-level scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus other unread-related tools. It simply states the function, leaving usage to be inferred from the tool's name and sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_meB

Get information about the current user

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description is the sole source of behavioral information. It only states the action without disclosing what fields are returned, whether authentication is required, or any error conditions. This is insufficient for a tool that returns data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no extraneous words. However, it is so terse that it borders on under-specification, though for a simple getter it is acceptable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description should provide more context about the expected response structure. It only says 'information' without specifying what that includes, leaving the agent with incomplete expectations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. The description does not need to elaborate on parameters, and the empty schema confirms no arguments are required.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves data about the current user, distinguishing it from siblings like get_user or search_users that target other users. The verb 'Get' and resource 'information about the current user' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to prefer this tool over alternatives. The description does not mention sibling tools or any exclusions, leaving the agent without context for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_teamC

Get information about a specific team

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must disclose behavioral traits, but it only states a read operation. It does not specify what 'information' includes, whether any permissions are required, or what the response structure looks like. The description adds minimal value beyond the tool's name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely brief (one sentence), which is concise, but it is also under-specified — it essentially repeats the tool name with minimal additional context. While there is no wasted text, the brevity borders on insufficient rather than effective conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema and annotations, the description should clarify what data the tool returns. It does not. The tool is simple (one parameter), but for a 'get by ID' tool, the description is too sparse to fully inform an agent about expected results or limitations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The sole parameter, team_id, is already fully described in the schema with the type and description 'Team ID' (100% coverage). The description adds no additional semantic meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('information about a specific team'), making the core purpose evident. However, it does not distinguish this tool from similar sibling tools like get_team_unread or get_channel, which also retrieve team-related or entity-specific data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as list_teams or get_teams_unread. The description lacks any context about prerequisites, filtering, or comparison to sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_teams_unreadA

Get unread message counts for all teams

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the tool returns unread counts for all teams, which is a behavioral outcome, but it does not mention any potential caveats like read-only status, performance implications, or the exact return structure. This is adequate for a simple read operation but adds little beyond the name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that conveys the essential purpose without any filler. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters, no output schema, and a simple read operation, the description is largely complete. It could be improved by specifying the return format (e.g., a list of team IDs with counts) or clarifying that it covers all teams the user is a member of, but these are not critical for a tool this simple.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the schema is empty and there is nothing to document. The description is not required to explain any parameter semantics, earning a baseline score of 4 for the null-parameter case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get'), the resource ('unread message counts'), and the scope ('all teams'), which distinguishes it from the sibling tool 'get_team_unread' that targets a single team.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'for all teams' gives clear context about when to use this tool versus a single-team tool, but it does not explicitly name alternatives or provide exclusionary guidance. The usage is implied rather than explicitly contrasted.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_team_unreadA

Get unread message count for a specific team

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. 'Get' implies a read-only operation, but there is no disclosure of return format, error behavior, authentication needs, or what happens for invalid team IDs. The description is minimal yet not misleading.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single clear sentence with no filler or redundant information. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description covers the essential purpose and return value ('unread message count'). It could mention edge cases or the specific team scope more explicitly, but the tool's simplicity keeps it reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% ('team_id' described as 'Team ID'), and the description adds no additional parameter meaning. Baseline 3 is appropriate since the schema fully documents the single parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description states a specific verb ('Get'), a clear resource ('unread message count'), and the scope ('for a specific team'). This distinguishes it from sibling tool 'get_teams_unread' which targets all teams.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for a single team but provides no explicit guidance on when to choose this tool over alternatives. It does not mention the plural counterpart 'get_teams_unread' or any exclusions, so usage context is implied rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_threadC

Get information about a specific thread

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID
thread_idYesThread ID (root post ID)

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Get information' implies a read operation but does not clarify whether it returns metadata, messages, stats, or other data, nor does it disclose side effects, permissions, or return format. This is minimal disclosure beyond the operation's name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence with no unnecessary words. While it is short, it is not bloated and effectively communicates the basic operation, though it sacrifices specificity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 2-parameter tool with no output schema and no annotations, the description should clarify that it returns thread metadata, not messages or stats, and distinguish it from siblings. The current description is too generic for an agent to reliably select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides full coverage with descriptions for both parameters, including 'Thread ID (root post ID)'. The tool description adds no additional meaning or context for the parameters, so it earns the baseline score for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a 'get' operation on a 'thread', but 'information' is vague and does not specify what aspects of the thread are returned. It does not differentiate from sibling tools like get_thread_messages or get_thread_stats, so the purpose is not precisely scoped.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus alternatives. It does not mention any exclusions, contexts, or related tools, leaving the agent to infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_thread_messagesB

Get all messages in a thread

ParametersJSON Schema
NameRequiredDescriptionDefault
post_idYesPost ID (root post of the thread)

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It implies a read operation via 'Get' but does not disclose details like ordering, pagination, depth of messages (including replies), or auth requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence ('Get all messages in a thread') that is front-loaded with the action and object, containing zero unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations and no output schema, the description is minimally viable but leaves gaps: it does not specify the return format, message ordering, whether nested replies are included, or any pagination behavior. However, given the simplicity of the tool (one parameter), it is adequate but not rich.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully documents the single parameter post_id with the description 'Post ID (root post of the thread)', achieving 100% schema description coverage. The tool description adds no additional meaning beyond that, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Get' and clearly identifies the resource as 'all messages in a thread', distinguishing it from sibling tools like get_channel_messages (channel messages) and get_thread (likely thread metadata).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No usage guidance is provided. The description does not mention when to choose this tool over alternatives such as get_channel_messages or search_messages, nor any exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_thread_statsB

Get unread threads count and mentions for a team

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states the function without revealing side effects, authentication requirements, rate limits, or what happens in edge cases (e.g., no unread threads). The description adds no behavioral context beyond the obvious read operation implied by 'Get'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short sentence, front-loaded with the action and resource. Every word is informative; there is no redundancy or filler. It is appropriately sized for the tool's simplicity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With one required parameter and no output schema, the description gives the gist of the return ('unread threads count and mentions') but lacks details about response structure or how it relates to the team context. It is minimally acceptable but leaves the agent guessing about the exact payload and edge-case behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for team_id, which already specifies 'Team ID'. The description's 'for a team' adds minimal semantic value, essentially restating the parameter. Since coverage is high, the baseline of 3 is appropriate; the description does not compensate with additional parameter details beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and identifies a clear resource ('unread threads count and mentions') scoped to a team. It distinguishes itself from siblings like get_thread (individual thread) and get_team_unread (general unread) by specifying thread-focused stats, though it could be more explicit about the aggregate nature.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives like get_team_unread or get_teams_unread. The description only states what it does, without any contextual cues, exclusions, or alternative references, leaving the agent to infer usage from the name and sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_userB

Get information about a specific user

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYesUser ID

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries full burden. It only says 'Get information' with no disclosure of read-only nature, return format, error behavior, or auth requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler. It is front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema or annotations, the description is too sparse. It fails to specify what 'information' is returned, lacks usage guidance, and does not address edge cases or prerequisites.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema fully covers the single parameter with 100% coverage and description 'User ID'. The tool description adds no extra semantic detail beyond saying 'specific user', so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Get' and resource 'information about a specific user', clearly distinguishing it from sibling tools like get_me (current user) and search_users (search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No usage guidance is provided. The description does not mention when to use this tool versus alternatives like get_me or search_users, nor any prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_channelsA

List all channels for the user in a team

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the core function and does not mention whether it is read-only, what 'all channels' includes (e.g., private, archived), pagination, ordering, or any other behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that is front-loaded with the verb and resource. Every word earns its place, with no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter list tool with no output schema, the description is adequate but not rich. It conveys the purpose clearly but does not describe the return format, scope details, or edge cases, which the agent might need for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the single parameter team_id with a description ('Team ID'). The description adds no extra parameter semantics beyond this, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') plus resource ('channels') and scope ('for the user in a team'), making it clear what the tool does. It distinguishes itself from sibling tools like get_channel (singular) and search_channels (search-based) by implying a comprehensive list operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The usage context is implied: use this when you need to list all channels for a team. However, no explicit alternatives, exclusions, or when-not-to-use guidance is provided, leaving the agent to infer from sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_teamsA

List all teams for the current user

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It discloses that results are scoped to the current user, which is a useful behavioral trait. However, it does not mention pagination, ordering, output format, or potential authorization requirements, which would strengthen transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler words. Every word earns its place, making it highly concise and immediately parsable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no input schema, no output schema), the description sufficiently captures its core purpose. It could optionally mention whether 'all teams' includes archived or hidden teams, but this is not essential for basic usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool accepts zero parameters and the schema is fully comprehensive (100% coverage). Per the rubric, a zero-parameter tool gets a baseline of 4 since there is no parameter meaning to add beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'list' with the resource 'teams' and clarifies scope 'for the current user', differentiating it from sibling tools like get_team (single team) and get_teams_unread (teams with unread counts). This is clear and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is the default action to enumerate the current user's teams, but it does not explicitly state when to prefer it over alternatives like get_teams_unread or get_team. It offers no exclusions or alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_threadsB

List all threads that the user is following in a team

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It reveals the filtering behavior (only threads the user is following), but omits other important traits such as whether the operation is read-only, what data is returned (e.g., thread metadata vs. messages), and any authentication requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence with no filler. It is front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite being a simple tool, the lack of output schema and annotations means the description should provide more completeness about return values or behavior. It doesn't mention what the list results contain (e.g., thread objects, IDs) or any pagination, making it incomplete for an agent to fully understand consequences.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter team_id has 100% schema coverage with its description 'Team ID'. The tool description adds no additional meaning beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('threads') with clear scope: threads the user is following in a team. This differentiates it from sibling tools like get_thread (single thread) and get_thread_messages (messages within a thread).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no explicit guidance on when to use this tool versus alternatives like get_thread or get_thread_messages. The use case is implied (listing followed threads) but no when-not-to-use or alternative references are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

login_with_mfaA

Login to Time Messenger with MFA code. Use this when regular login requires MFA verification. Enter the 6-digit code from your authenticator app.

ParametersJSON Schema
NameRequiredDescriptionDefault
mfa_codeYes6-digit MFA code from authenticator app

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action and input but does not explain success/failure behavior, session establishment, prerequisites, or side effects. For an authentication tool, this is a significant gap that could lead an agent to misuse or misinterpret the outcome.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each serving a distinct purpose: stating what the tool does, when to use it, and how to provide the MFA code. Every sentence earns its place with no redundancy, making it concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description covers the core use case: logging in with an MFA code. However, it lacks details about the login result, error handling, or whether the tool returns a session token. This is adequate for basic use but not fully complete for an agent that may need to handle failures or confirm success.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully describes the mfa_code parameter with the same wording as the description ('6-digit MFA code from authenticator app'). With 100% schema coverage, the description adds no extra semantic value beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (Login), the target system (Time Messenger), and the method (MFA code), making the tool's purpose unambiguous. It is easily distinguished from sibling tools, all of which are messaging/thread/channel operations, so there is no confusion with alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly specifies when to use the tool: 'Use this when regular login requires MFA verification.' This provides a clear context, though it does not mention alternatives or exclusions. Since no sibling tool serves a login function, the guidance is sufficient without additional alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mark_thread_readB

Mark a thread as read up to a specific timestamp

ParametersJSON Schema
NameRequiredDescriptionDefault
team_idYesTeam ID
thread_idYesThread ID (root post ID)
timestampNoUnix timestamp in milliseconds (optional, defaults to now)

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It only states the action ('mark as read') without disclosing side effects, permissions required, reversibility, or impact on unread counts or threads.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, clear, front-loaded sentence with no wasted words. It effectively communicates the core function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple mutation tool with no annotations or output schema, the description is adequate but lacks behavioral context (e.g., what happens after marking, idempotency, or error conditions). The schema covers parameters, so it is not incomplete on that front.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes all parameters with 100% coverage. The description adds minimal value beyond restating the 'timestamp' concept, but does not clarify parameter relationships or provide additional context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('mark') and resource ('thread' as read) with a clear qualifier ('up to a specific timestamp'). This distinguishes it from sibling tools like follow_thread/unfollow_thread and get_thread_messages, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives (e.g., follow_thread, get_channel_unread). It does not mention prerequisites, exclusions, or alternative tools for related operations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_channelsA

Search channels in a team by name

ParametersJSON Schema
NameRequiredDescriptionDefault
termYesSearch term
team_idYesTeam ID

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description only states the core purpose. It does not disclose behavioral traits like whether the operation is read-only, case sensitivity, pagination, or the response format. The verb 'search' implies no side effects but this is not explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short, front-loaded sentence that conveys all essential information without any redundant words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and the schema covers parameters fully, but there is no output schema and no behavioral details. The description does not specify the return value or behavior when no matches are found, leaving some ambiguity for a search tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides descriptions for both required parameters (term and team_id) with 100% coverage. The description adds no additional semantic meaning beyond what the schema contains, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('search'), the resource ('channels'), and the scope ('in a team by name'). It distinguishes this from sibling tools like search_messages and search_users by explicitly targeting channels.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage (when you need to find a channel by name within a team) but does not explicitly contrast it with alternatives such as list_channels or get_channel, nor does it state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_messagesB

Search messages in a team

ParametersJSON Schema
NameRequiredDescriptionDefault
termsYesSearch terms
team_idYesTeam ID to search in

TDQS

B3/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates the tool's basic purpose and does not mention search behavior, result limits, pagination, auth requirements, or any side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence that is front-loaded and contains no fluff. It states the action and scope efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with no output schema and no annotations, the description is too sparse. It does not explain what kind of matches are returned, ordering, pagination, or how to interpret the response, leaving the agent under-informed for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with both parameters already explained in the schema. The description adds no extra meaning beyond the schema's field descriptions, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Search messages in a team' uses a specific verb ('search') and resource ('messages'), with a scope ('in a team'). It clearly distinguishes from sibling tools like search_channels, search_users, and get_channel_messages.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as get_channel_messages or search_channels. There are no exclusions, prerequisites, or alternative tool mentions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_usersA

Search users by username, email, or name

ParametersJSON Schema
NameRequiredDescriptionDefault
termYesSearch term

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It specifies that the search term applies to username, email, or name, but does not mention case sensitivity, partial matching, pagination, or return format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence with no redundant information, front-loading the verb and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter search tool, the description provides the essential purpose and search fields, but lacks guidance on output or when to use this tool vs. getting user details via get_user. However, it is minimally complete for invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema describes 'term' only as 'Search term', while the description adds meaning by indicating the searchable fields (username, email, name), enriching the parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches users with specific searchable fields (username, email, name), distinguishing it from sibling search tools like search_messages and search_channels.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives like get_user or search_channels. The usage is implied by the purpose, but no exclusions or alternative recommendations are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_messageA

Send a message to a channel or reply in a thread

ParametersJSON Schema
NameRequiredDescriptionDefault
messageYesMessage text (supports Markdown)
root_idNoOptional: Post ID to reply in a thread
channel_idYesChannel ID to send message to

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It only says 'send' without addressing authentication, side effects, rate limits, or whether the message is posted publicly. This is a significant gap for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the tool's purpose without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with full schema coverage and no output schema, the description covers the core action. It could mention prerequisites or usage constraints, but the low complexity makes this acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all parameters already have descriptions. The description adds minimal extra meaning beyond the schema, only clarifying that root_id enables replying in a thread, which is already stated in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'send' and the resource 'message', and specifies two use cases: sending to a channel or replying in a thread. It is distinct from sibling tools, which are all read/search/list operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool (to create a message) versus alternatives (read/search tools). It lacks explicit exclusions or alternative references, but the context of sibling tool names makes the purpose unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

unfollow_threadB

Stop following a thread

ParametersJSON Schema
NameRequiredDescriptionDefault
thread_idYesThread ID (root post ID)

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility for behavioral disclosure. It only states the action without mentioning side effects, reversibility, permissions, or impact on notifications, which is insufficient for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no wasted words. It is appropriately minimal for a simple tool, though it could be considered under-specified; however, conciseness itself is strong.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite the tool's low complexity, the description lacks essential context, such as preconditions, what 'following' entails, or any error conditions. With no annotations or output schema, the tool description is incomplete for an agent to use confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage for parameter thread_id with 'Thread ID (root post ID)'. The description adds no additional semantic context, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Stop following a thread' clearly states the specific action (stop following) and the resource (a thread). It distinguishes itself from the sibling tool follow_thread by being the inverse operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives. It does not mention follow_thread or any other related tools, nor does it specify scenarios where unfollowing would be appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 22 tool updatesv1.3.0
    • First observedfollow_thread
    • First observedget_channel
    • First observedget_channel_messages
    • First observedget_channel_unread
    • First observedget_me
    • First observedget_team
    • First observedget_team_unread
    • First observedget_teams_unread
    • First observedget_thread
    • First observedget_thread_messages
    • First observedget_thread_stats
    • First observedget_user
    • First observedlist_channels
    • First observedlist_teams
    • First observedlist_threads
    • First observedlogin_with_mfa
    • First observedmark_thread_read
    • First observedsearch_channels
    • First observedsearch_messages
    • First observedsearch_users
    • First observedsend_message
    • First observedunfollow_thread

TDQS

A3.5/5.0

Scored across 22 tools

Disambiguation5/5

Each tool has a unique target resource and action (send, get, search, list, follow/unfollow, mark). The getters are clearly differentiated by resource type (channel messages, thread messages, thread info, channel info, team info, user info, unread counts). No two tools appear to perform the same operation.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern with underscores, using verbs like get, list, search, send, follow, unfollow, mark, and login. The choice of verb is intuitive (list for enumeration, get for specific resources, search for queries). No mixed casing or inconsistent styles.

Tool Count4/5

22 tools is slightly above the typical 3-15 range but is justified by the breadth of messaging domain (teams, channels, threads, users, messages, unread counts). Each tool addresses a distinct part of the workflow, so the count is appropriate for a comprehensive messaging integration.

Completeness3/5

The tool set covers reading/searching messages, sending messages, managing thread subscriptions, and checking unread counts. However, it lacks update/delete operations for messages and create/delete operations for channels/teams, which are notable gaps for a full lifecycle. Agents can work around this but may hit dead ends when needing to modify resources.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers