codebuddy-matrix-channel
Bridges Matrix chat rooms with CodeBuddy, allowing messages sent in Matrix to be injected into CodeBuddy sessions and responses to be sent back as replies. Supports media download and end-to-end encryption.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@codebuddy-matrix-channelBridge my Matrix room #design into CodeBuddy and relay messages both ways."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
codebuddy-matrix-channel
Bridge Matrix chat to the Channel plugin (MCP server) for local CodeBuddy Code sessions.
Works the same as CodeBuddy's built-in Telegram / Discord / WeChat channels:
Messages sent in a Matrix room appear in the CodeBuddy session as
#matrix · @alice:matrix.org: 你好CodeBuddy's replies are sent back to the Matrix room via the
replytoolOptional: forward CodeBuddy's permission request prompts to a “control room” to approve/deny tool calls from your phone
This plugin is based on CodeBuddy's Channel extension mechanism (see docs/cn/cli/channels.md and channels-reference.md) and does not require modifying CodeBuddy itself.
1. How it works
Matrix 房间 ──(matrix-js-sdk 收消息)──▶ matrix-channel (本插件)
│ notifications/claude/channel
▼
CodeBuddy Code 会话
│ reply 工具 / 权限请求
▼
matrix-channel ──(sendText)──▶ Matrix 房间The plugin is started by CodeBuddy as a child process over stdio and communicates via the MCP protocol.
Related MCP server: mcacp
2. Installation
cd matrix-channel
npm install
npm run build # 编译到 dist/(也可直接用 tsx 运行,无需构建)Requires Node >= 20 at runtime.
2.1 Quick start (digital avatar)
Install / build
cd matrix-channel && npm install && npm run buildFill in
.env(minimal usable set, see Section 3)MATRIX_HOMESERVER=https://im.yiq.pub MATRIX_ACCESS_TOKEN=<从 Element:设置 → 帮助 → 高级 → 访问令牌 复制> MATRIX_USER_ID=@evlon-ai:im.yiq.pub MATRIX_ALLOWLIST=@evlon:im.yiq.pub # 防 prompt 注入,必填 MATRIX_OWNER_ID=@evlon:im.yiq.pub # 分身管理者=你,审批权只认此身份 MATRIX_CONTROL_ROOM_ID=!<控制室房间ID>:im.yiq.pub MATRIX_MENTION_REQUIRED=true # 群里只响应 @分身 # 可选:MATRIX_TRUSTED_SENDERS / MATRIX_TRUSTED_ROOMS / MATRIX_AUTHORIZED_WORKSelf-check (run this after every
.envchange)npm run doctor # 期望:连接 ✅、账号 ✅、E2EE ✅Connect to CodeBuddy: register in the project
.mcp.json(absolute path), then startcodebuddy --channels server:matrix --dangerously-load-development-channelsDaily use
@avatar in a group to assign work → trusted/authorized work runs automatically; unfamiliar work first produces a plan and goes to the control room to wait for your
approve.High-risk tools (Bash/write file, etc.) always go to the control room to ask you.
You issue commands in the control room (only
MATRIX_OWNER_IDis recognized):approve(run/go, optionally followed by a room ID) → authorize tasks in that roomyes <id>/no <id>→ allow / deny pending high-risk permission requests
For encrypted rooms, set
MATRIX_E2EE=true; ifMATRIX_DEVICE_IDis left empty, it will be auto-selected from/devices; if an error occurs, fill in the device ID from “Settings → Devices”.
3. Configuration
Copy .env.example to .env and fill it in:
cp .env.example .envVariable | Description |
| Homeserver address, e.g. |
| Account access_token (recommended; copy from Element “Settings → Help”) |
| Optional, used to identify “own messages”, e.g. |
| Alternative authentication method; at startup it will call |
| Allowed sender user IDs that may send messages, comma-separated (be sure to configure) |
| Allowed room IDs to listen to, comma-separated (empty = all) |
| Permission relay control room room ID (optional, but required in digital avatar mode) |
| Matrix user ID of the avatar manager (owner) (required). Approval authority only recognizes this identity |
| Trusted colleague user IDs, comma-separated; work from them runs automatically (safe tools) |
| Trusted group IDs, comma-separated; all work in these rooms runs automatically |
| Description of authorized routine work (free text), for the avatar to judge “common vs unfamiliar” |
| Whether to only respond to messages that @-mention the bot in groups (default true; recommended when multiple avatars coexist) |
| High-risk tool list, comma-separated; default |
| Whether to download images/files locally and inject them as |
| Media download directory (default |
| Whether to enable end-to-end encryption (default false, see Section 6 below) |
| Has no effect in matrix-js-sdk 42.x (see Section 6): Rust crypto uses wasm + |
⚠️ Security: be sure to configure
MATRIX_ALLOWLIST(it checks by sender, not by room, to prevent any group member from injecting into the session). Leaving it empty allows everyone and is for local testing only.
4. Connecting to CodeBuddy
Method A: development period (bypassing the marketplace whitelist)
Register this plugin in your CodeBuddy project .mcp.json:
{
"mcpServers": {
"matrix": {
"command": "npx",
"args": ["tsx", "/绝对路径/matrix-channel/src/index.ts"]
}
}
}Then start CodeBuddy:
codebuddy --channels server:matrix --dangerously-load-development-channelsAfter compiling, you can run it with
nodeinstead:"args": ["node", "/绝对路径/matrix-channel/dist/index.js"]
Method B: package as a plugin (after submitting to the official marketplace)
npm run buildThen publish codebuddy-matrix-channel as a plugin, and afterwards use:
codebuddy --channels plugin:matrix-channel@<你的市场>5. Usage
After startup, send a message in an allowed Matrix room, and
#matrix · @你: ...will appear in the CodeBuddy sessionWhen CodeBuddy finishes processing, the reply appears in the Matrix room
If
MATRIX_CONTROL_ROOM_IDis configured: when CodeBuddy calls a tool that requires approval (Bash / Write, etc.), the control room receives a prompt (sent as anm.noticesystem message, which does not trigger unread/notifications); replyyes <id>to allow /no <id>to deny
reply tool parameters
Parameter | Description |
| Matrix room ID (taken from the |
| Text to send |
| Optional, HTML body (sent together with |
| Optional, |
For example, have CodeBuddy reply with an
m.noticestatus message:reply({ chat_id: "!abc:server", text: "已处理", msgtype: "m.notice" }).
health_check tool
Can be called directly in the CodeBuddy session, or triggered in the /mcp health check; equivalent to the connectivity/E2EE part of npm run doctor, returning JSON:
{ "ok": true, "userId": "@alice:matrix.org", "e2ee": true, "cryptoReady": true }When ok=false, an error field is included explaining the failure reason (connection/authentication/E2EE initialization).
6. Limitations and notes
End-to-end encrypted (E2EE) rooms: by default, only unencrypted rooms are supported. To bridge encrypted rooms, set
MATRIX_E2EE=true; the plugin reuses matrix-js-sdk's built-in Rust crypto (initRustCrypto), and the SDK automatically handles “decrypt on receive, encrypt on send” — no need to implement the encryption protocol yourself. When enabled:Encrypted messages arrive as
m.room.encrypted; after the SDK finishes decryption (Event.decrypted), the type changes to the real type, and the plugin then pushes it to the session;Replies sent to encrypted rooms are automatically encrypted by the SDK;
Key storage (important, version-dependent): under matrix-js-sdk 42.x, the Rust crypto backend only has a wasm/IndexedDB implementation (
@matrix-org/matrix-sdk-crypto-wasm), with no native Node backend. To make it run on Node, the plugin injects a globalindexedDBshim into Node at startup usingfake-indexeddb/auto— this shim is purely in-memory, so:Keys actually exist only in process memory;
MATRIX_CRYPTO_DBwill not create a real SQLite file on disk in this version; after restarting the process, keys need to be re-negotiated (this does not affect sending/receiving, it just requires redoing key forwarding/device verification once).True disk persistence requires upgrading to a matrix-js-sdk version that ships the native
@matrix-org/matrix-sdk-crypto-nodejsbackend, or a future version that supports the nodejs entry point (at that point, remove thefake-indexeddbshim and switch to the native backend).Note: the already-installed
@matrix-org/matrix-sdk-crypto-nodejsdependency is not called by the SDK in the current 42.2.0, and is only a fallback for future upgrades; the current encryption core works via wasm + thefake-indexeddbin-memory shim.
When a new device first enters an encrypted room, it is recommended to verify this bot's device in the Matrix client (otherwise the other party may see an “unverified device” warning, but messages will still send and receive normally).
Media: by default, only message text is bridged into the session; enabling
MATRIX_DOWNLOAD_MEDIAdownloads images/files locally and injects them as[file: path]so the Agent can read them.Permission relay depends on CodeBuddy's
claude/channel/permissioncapability; if the CodeBuddy version does not support it, the core chat bridge is unaffected.
7. Digital avatar: manager authorization model (core scenario)
Treat the avatar as a “colleague in the group”: anyone can @ it to assign work, yet it will not actually change anything until the manager approves.
Scenario
Colleagues create multiple groups (e.g.
#项目A,#客服), and there may be multiple avatar bots in a group at the same time. Colleagues @your avatar in the group to assign work; it only responds when @-mentioned (direct messages always respond).After receiving an assignment:
Common / authorized work (from your preset
MATRIX_TRUSTED_SENDERS/MATRIX_TRUSTED_ROOMS, or within the scope described byMATRIX_AUTHORIZED_WORK) → runs automatically (safe tools).Unfamiliar work (outside the authorized scope) → the avatar first produces a plan, calls
request_approvalto escalate to your control room; it only executes after you replyapprove.High-risk operations (
MATRIX_HIGH_RISK_TOOLS, such as Bash / writing files) → regardless of source, always asks you first.
Architecture layers
MCP plugin = secure transport + hard gate (enforced by code, not trusting the model):
@filtering and permission decisionsallow/denyrely only on verifiable facts (whether it is the owner, whether it is a trusted source, whether it is a high-risk tool); control room approval only recognizesMATRIX_OWNER_ID.SKILL = policy brain (semantic judgment, delegated to the Agent):
skills/matrix-avatar/SKILL.mdguides the avatar to judge “common vs unfamiliar”; when unfamiliar, it enters plan mode and callsrequest_approval. The Agent only requests approval and never grants itself permission; approval comes only from “the manager's trusted source presets” or “the manager'sapprove”.
The plugin's built-in channel
instructionsalready inline this policy, so it works without installing the SKILL separately;skills/matrix-avatar/SKILL.mdis provided for you to reuse/tweak in CodeBuddy.
Three-tier task status (per room)
Status | Meaning | Safe tools | High-risk tools |
| Trusted source / already | Auto-run | Ask the manager (control room |
| Escalated and pending review ( | Blocked | Blocked |
| Unfamiliar source, unauthorized | Blocked | Blocked (and prompts |
Control room commands (only valid for the manager MATRIX_OWNER_ID)
approve(orrun/go, optionally followed by a room ID, e.g.approve !projectA:server) → authorize the current task in that room, and the avatar starts executing.yes <id>/no <id>→ allow / deny pending high-risk permission requests.Control room replies from anyone else are ignored.
Configuration example (.env)
MATRIX_OWNER_ID=@you:matrix.org
MATRIX_TRUSTED_SENDERS=@alice:matrix.org,@bob:matrix.org
MATRIX_TRUSTED_ROOMS=!projectA:server
MATRIX_AUTHORIZED_WORK=回答产品问题、总结会议纪要、起草文档
MATRIX_MENTION_REQUIRED=true
MATRIX_HIGH_RISK_TOOLS=Bash,Write,Edit,MultiEdit,NotebookEdit8. Self-check (doctor)
After filling in .env, you can run the self-check first to confirm configuration, connectivity, and E2EE status before starting CodeBuddy:
npm run doctorThe self-check prints the current configuration (token masked), verifies that the homeserver is reachable and credentials are valid, and attempts to initialize Rust crypto when MATRIX_E2EE=true. Any failure gives a clear reason and exits with a non-zero exit code.
9. Directory structure
matrix-channel/
├── src/
│ ├── config.ts # 环境变量 / 白名单 / 授权配置读取与校验
│ ├── matrix.ts # Matrix 客户端封装(连接、@提及过滤、收/发、下载媒体、E2EE、自检)
│ ├── index.ts # MCP 服务:channel 通知、授权硬闸、reply / request_approval 工具、控制室审批
│ └── doctor.ts # `npm run doctor` 自检入口
├── skills/
│ └── matrix-avatar/
│ └── SKILL.md # 分身行为策略(语义判断:常用 vs 陌生)
├── package.json
├── tsconfig.json
├── .gitignore
├── .env.example
└── README.mdAvailable Tools
6 toolshealth_checkA
运行连接/E2EE 自检(等价于 npm run doctor),返回 Matrix 连接与加密状态。可在 /mcp 健康检查中调用。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool performs a diagnostic self-check and returns connection and encryption status, which implies a read-only probe. It does not explicitly say it has no side effects, but the self-check framing makes the behavior sufficiently transparent for a zero-parameter tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one compact sentence that front-loads the action and scope, then adds the return value and invocation context. Every clause earns its place; there is no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter diagnostic tool with no output schema, the description covers purpose, method, return value, and invocation context. Nothing essential is missing for an agent to select and call the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has no parameters and schema description coverage is 100%, so there is nothing for the description to clarify. Baseline for zero parameters is 4, and the description adds no conflicting or misleading parameter information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: it runs a connection/E2EE self-check equivalent to 'npm run doctor' and returns Matrix connection and encryption status. It also distinguishes this health-check tool from the messaging/approval-oriented sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear usage context by stating it can be invoked during /mcp health checks and is for checking connection/encryption status. It does not explicitly name when-not-to-use conditions, but the sibling tools are clearly different in purpose, so the distinction is implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_roomsA
列出本分身已加入的所有 Matrix 房间(room_id + 标题),用于了解「我在哪些房间 / 群」。当不知道该回哪个房间时,可据此找到与管理者(owner)的私聊房间。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and discloses the scope (only rooms the avatar has joined) and the output content (room_id + title). For a read-only, zero-parameter listing tool this is adequate, though it omits minor traits like ordering, pagination, and whether the owner room is guaranteed to exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with zero filler. The first sentence front-loads the core purpose and output fields; the second adds a practical decision aid without repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 0-parameter list tool with no output schema, the description covers what is listed, what fields come back, and when to use it. Minor gaps (e.g., behavior when no rooms exist, pagination) are low-stakes for a read-only listing, so nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so schema coverage is trivially 100% and there is nothing to document. The baseline of 4 applies because no parameter semantics are needed; the description appropriately spends its effort on output and scope instead.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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 (all Matrix rooms this avatar has joined), and explicitly states the returned fields (room_id + title). The scope '本分身已加入' clearly separates it from per-room siblings like room_info and room_members, so an agent can tell them apart without opening another schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides a concrete usage scenario: when unsure which room to reply to, use this tool to locate the owner's private chat room. It does not, however, name alternatives or state when not to use it (e.g., room_info for a single room's details), so it lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
replyA
通过 Matrix 把回复发送到指定房间(chat_id)。省略 chat_id 时回复发往最近一次转发进来的房间(原路返回)。发送会按配置自动重试;若多次仍发不回来源房间,则改用默认回复(MATRIX_DEFAULT_REPLY)发往控制室/owner 私聊兜底。
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | 可选,HTML 格式正文(与 text 同时发送) | |
| text | Yes | 要发送的文本 | |
| chat_id | No | Matrix 房间 ID,例如 !abc:server。省略时回复发往最近一次转发进来的房间。 | |
| msgtype | No | 消息类型:m.text 普通消息;m.notice 系统提示(不触发未读/提醒) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
没有 annotations,因此描述承担了全部行为披露责任。描述主动说明了自动重试机制、失败后的默认回复兜底行为(发往控制室/owner 私聊),以及原路返回的逻辑,这些都是非显而易见的关键行为。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
描述短小精悍,三句话分别说明核心操作、chat_id 省略行为和重试/兜底机制,信息密度高且没有冗余。关键行为前置,结构清晰。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
对于发送消息类工具,描述配合完整 schema 已覆盖调用所需信息:目标房间、默认回退行为、重试和失败兜底。没有输出 schema 也不影响理解,整体上下文完整。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema 描述覆盖率为 100%,所有参数在 schema 中已有说明。描述额外强调了 chat_id 省略时的行为,但 schema 中同样包含该信息,因此描述在参数语义上未显著超出 schema 提供的价值。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
描述明确说明该工具通过 Matrix 发送回复到指定房间,并解释了省略 chat_id 时的原路返回行为。动词和资源都很具体,与 list_rooms、room_info 等只读查询类兄弟工具形成清晰区分。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
描述清晰说明了何时使用该工具(发送回复)以及省略 chat_id 时的行为,但未明确提及何时不应使用或列举替代工具。整体使用场景清楚,只是缺少显式的排他性说明。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_approvalA
当判断当前任务来自陌生来源或含高风险时调用,把任务升级到管理者控制室等待审批。管理者回复 approve 后任务会被重放并执行。
| Name | Required | Description | Default |
|---|---|---|---|
| reason | Yes | 需要审批的原因/计划摘要 |
TDQS
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 explains that the task is escalated, that it waits for approval, and that it will be replayed and executed after the manager replies 'approve'. It does not mention rejection behavior, but the core lifecycle is clearly disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence that front-loads the trigger condition, then states the action and outcome. Every part is informative and there is no redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with a single required parameter and no output schema, the description covers the key context: when to call, what happens, and what triggers execution. It does not specify behavior on rejection, but the overall guidance is sufficient for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers the single parameter 'reason' with 100% coverage, including its meaning as the approval reason or plan summary. The description adds no further parameter-level detail, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies a specific action: escalating the current task to a manager control room for approval. It also gives the triggering condition ('unfamiliar source or high risk'), which distinguishes it from the sibling tools like reply, health_check, and list_rooms.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool: when the task is from an unfamiliar source or carries high risk. It does not explicitly list alternatives or exclusions, but the condition is clear enough that an agent can decide appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
room_infoA
获取指定 Matrix 房间(群/私聊)的可读信息:名称、主题、成员昵称与 ID。用于配置与检查「房间 ID ↔ 名称」映射。chat_id 省略时取最近一次转发进来的房间。
| Name | Required | Description | Default |
|---|---|---|---|
| chat_id | No | Matrix 房间 ID,例如 !abc:server。省略时取最近对话房间。 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It does disclose that the operation retrieves readable info and defines the default behavior when chat_id is omitted, which is useful. However, it does not explicitly state that the operation has no side effects, what happens on invalid room IDs, or any permission requirements — gaps that matter for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no filler. The first sentence states the tool's purpose and outputs, the second gives the use case and default behavior. Critical information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple getter with one optional parameter, the description is mostly complete: it lists return fields, the use case, and the fallback behavior. Since there is no output schema, describing the expected fields is important and done here. Minor omissions around error/not-found behavior prevent a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value beyond the schema by clarifying that 'recent conversation' specifically means the most recently forwarded room, and by explaining why chat_id is optional in terms of the mapping use case.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies a clear verb ('获取' / get) and resource ('指定 Matrix 房间'), and lists the exact data returned (name, topic, member nicknames and IDs). It does not explicitly contrast itself with siblings such as list_rooms or room_members, but the resource scope and output fields are specific enough to distinguish it without opening the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states a concrete use case: configuring and checking the 'room ID ↔ name' mapping. It also explains the optional chat_id behavior (fallback to the most recently forwarded room), which guides when to call the tool without an argument. No alternatives or when-not-to-use conditions are mentioned, hence not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
room_membersA
获取指定 Matrix 房间(群聊)的在场成员列表,返回每个成员的 user_id 与 display_name,用于了解「谁在场」。chat_id 省略时取最近一次转发进来的房间。
| Name | Required | Description | Default |
|---|---|---|---|
| chat_id | No | Matrix 房间 ID,例如 !abc:server。省略时取最近对话房间。 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
无 annotations,描述承担行为说明职责。它说明了工具是只读查询、返回成员列表并解释 chat_id 缺省行为,但未披露任何可能的权限要求、失败情形或数据即时性等行为特征。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
两句话完整说明用途、返回值与缺省行为,信息密度高且无冗余,属于精炼的合格描述。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
对单参数只读列表工具,描述已说明返回字段、缺省行为和使用场景;缺少输出结构样例或错误条件,但整体足以让 agent 正确调用。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
参数仅有 chat_id,schema 已包含描述;描述额外说明了省略 chat_id 时的默认行为(取最近对话房间),为参数语义增加了超出 schema 的价值。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
描述使用明确动词「获取」与资源「指定 Matrix 房间(群聊)的在场成员列表」,并具体说明返回 user_id 与 display_name,足以与 siblings 如 list_rooms、room_info 区分。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
描述说明 chat_id 省略时取最近转发进来的房间,提供了明确的使用上下文;但未明确说明何时不使用本工具(例如需要房间详情时用 room_info),因此未达满分。
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. Dates show when Glama detected each change.
6 tool updates
v0.1.0- First observed
health_check - First observed
list_rooms - First observed
reply - First observed
request_approval - First observed
room_info - First observed
room_members
TDQS
The tools are mostly distinct: reply, health_check, request_approval, list_rooms, room_members, and room_info each target a different action or resource. The only mild overlap is between room_info and room_members, since room_info also includes member names/IDs, but the descriptions are clear enough to guide selection.
All names are lowercase snake_case, but the semantic pattern is mixed: reply is a bare verb, list_rooms and request_approval are verb+noun, while room_members and room_info are noun+noun descriptors. This is readable but not consistently a verb_noun convention.
Six tools is a tight, well-scoped set for a Matrix channel bridge. Each tool supports a distinct part of the workflow—responding, verifying health, escalating approval, and discovering rooms and participants—without redundancy or bloat.
The set covers the core bot workflow on a Matrix channel: replying, understanding room context, checking connection health, and handling approval escalation. Minor gaps like joining/leaving rooms or reading message history exist, but they are outside the apparent core purpose and do not create dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
BridgeApp workspace over MCP: tasks, chats, threads, pages, and projects.
Real-time chat for AI agents. Claude Code, Cursor, Cline and Codex join channels over MCP.
Join durable public agent discussions and invite-only private group rooms through MCP.
161
Related MCP Servers
- AlicenseAqualityBmaintenanceBridges OpenAI Codex CLI to any MCP client, allowing headless Codex sessions via tools like codex and codex-reply.2261MIT
- AlicenseAqualityDmaintenanceBridges any MCP client (like Claude Code, Zed, VS Code) to any ACP coding agent, enabling multi-agent orchestration from a single chat interface.242109Apache 2.0
- AlicenseNot gradedqualityBmaintenanceBridges a Matrix room with Claude Code's claude/channel feature, enabling chat from Matrix to interact with a running Claude Code session.GPL 3.0
- AlicenseNot gradedqualityCmaintenanceMCP server for Matrix that lets Claude list rooms, search/read messages, send messages and files, react, create rooms, and invite users, with multi-homeserver support and safe-by-default writes; no end-to-end encryption.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/evlon/matrix-channel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server