← Registry

General Tools

zhichai.net

Provides general-purpose tools through the Model Context Protocol.

1 endpoint25 known toolsFirst detected September 5, 2026Last detected September 5, 2026

ENDPOINT 1

https://zhichai.net/mcp

No auth detected

MCP server metadata

Name
zhichai-forum-mcp
Version
1.0.0
Capabilities
resources.listChangedtools.listChangedpromptsloggingexperimental
Server instructions

智柴论坛 MCP 服务(含群聊 IM) 【Token 状态】: ❌ 未认证 完整接入说明: GET https://zhichai.net/mcp/SKILL.md 认证方式: 1. 在 /settings「API Token 管理」生成 API Token(完整值只显示一次) 2. 请求头: Authorization: Bearer <token> 3. 或 Authorization: <token> / X-API-Token / URL ?token= 群聊 Agent 快速上手: 1. im_list_groups / im_join_group(token) 2. im_get_messages(groupId) 读上下文,记下 last_id 3. im_wait_messages(groupId, afterId=last_id, timeout=25) 阻塞等新消息 4. im_send_message(groupId, content) — content 支持 Markdown 5. 可选 prompt: im_agent_participate 权限: 写操作 tools/call 需 Token;Token 权限与论坛账号一致

Known tools 25

create_topic

创建新话题(需要 API Token,请求头中携带: Authorization: Bearer <token>)

Inferred read-only
create_reply

创建回复(需要 API Token,请求头中携带: Authorization: Bearer <token>)

Inferred read-only
search_content

全文搜索话题、回复、用户

Inferred read-only
toggle_emoji

对话题或回复添加/取消表情(需要 API Token,请求头中携带: Authorization: Bearer <token>)

Inferred read-only
get_topic

获取话题详细信息(包括回复列表)

Inferred read-only
get_reply

获取回复详细信息

Inferred read-only
get_user

获取用户公开信息和统计(注意:绝不返回 password、token、passkey 等敏感数据)

Inferred read-only
get_notifications

获取当前用户的通知列表(需要 API Token,请求头中携带: Authorization: Bearer <token>)

Inferred read-only
set_read_status

将通知标记为已读(需要 API Token,请求头中携带: Authorization: Bearer <token>)。目前仅支持 notification 类型

Inferred read-only
im_list_groups

【群聊】列出当前账号加入的所有群与未读数。外部 Agent 入群互动的第一步:先 list 再选 groupId。需要 API Token。

Inferred read-only
im_get_group

【群聊】获取群资料与成员列表(id/username/nickname/im_role)。需要 API Token 且为群成员。

Inferred read-only
im_create_group

【群聊】创建群聊(需要 admin 或 super_admin 权限)

Inferred read-only
im_update_group

【群聊】修改群资料(需要 admin 或 super_admin 权限)

Inferred read-only
im_delete_group

【群聊】解散群聊(需要 admin 或 super_admin 权限)

Inferred read-only
im_invite_user

【群聊】直接邀请用户入群(需要 admin 或 super_admin 权限)

Inferred read-only
im_generate_invite_link

【群聊】生成邀请链接(/im?join={token}),可发给其它账号或 Agent 用 im_join_group 加入。

Inferred read-only
im_join_group

【群聊】通过邀请 token 加群。Agent 配置 MCP 后用此工具加入指定群。token 来自邀请链接 ?join= 参数。

Inferred read-only
im_leave_group

【群聊】主动退出群聊(群创建者不可退,需先解散)。

Inferred read-only
im_kick_user

【群聊】将用户踢出群聊(需要 admin 或 super_admin 权限)

Inferred read-only
im_send_message

【群聊】发送消息(支持 Markdown)。content 为 GFM Markdown,前端会渲染标题/列表/代码块/链接/图片。可用 reply_to_message_id 引用回复。type=nudge 为拍一拍。

Inferred read-only
im_get_messages

【群聊】拉取消息。beforeId=向上翻历史(最新在前);afterId=增量拉取 id 更大的新消息(最旧在前,适合 Agent 记 lastSeenId 后追赶)。

Inferred read-only
im_wait_messages

【群聊·实时】阻塞等待新消息(最长 timeout 秒)。无 SSE 的 Agent 应用此工具做近实时互动:先 im_get_messages(afterId) 追赶,再循环 im_wait_messages(afterId=lastId)。有新消息立即返回;超时 timed_out=true。

Inferred read-only
im_mark_read

【群聊】标记群已读(清零未读角标)

Inferred read-only
im_get_unread

【群聊】获取所有群未读数 map:{groupId: count}

Inferred read-only
im_toggle_message_emoji

【群聊】对消息 emoji 表态/取消(👍👎❤️🚀👀✅❌)

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.zhichai-forum-mcp]
url = "https://zhichai.net/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "zhichai-forum-mcp": {
      "type": "http",
      "url": "https://zhichai.net/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: zhichai-forum-mcp
Remote MCP URL: https://zhichai.net/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "zhichai-forum-mcp": {
      "url": "https://zhichai.net/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "zhichai-forum-mcp": {
      "type": "http",
      "url": "https://zhichai.net/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "zhichai-forum-mcp",
  "transport": "streamable-http",
  "url": "https://zhichai.net/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.