来源信息
- 仓库
- RabbitAI-Lab/rabbit-plugins-mcp
- 最近来源活动
- 2026年7月26日 14:08
- 检测到的 SKILL.md 语言
- 中文
- 星标
- 0
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- any-chat-zh
- description
- AnyChat 多模型聊天统一接口。适用于需要多模型聊天的 MCP 场景。
# any-chat
AnyChat 多模型聊天统一接口
## 何时使用
- 通过 MCP 客户端使用 **any-chat**
- any-chat 所支持的AI 服务相关任务
- 用 `claude mcp add` 或 `.mcp.json` 注册 any-chat
## 安装
any-chat 是 stdio 传输的 MCP 服务器。注册到 Claude Code:
```bash
claude mcp add any-chat -- npx mcp-any-chat
```
或写入 `.mcp.json`:
```json
{
"mcpServers": {
"any-chat": {
"command": "npx",
"args": [
"mcp-any-chat"
]
}
}
}
```
引导式安装脚本见 `scripts/install.sh`。
## 验证
```bash
claude mcp list
```
## 详情
- **服务器**: `any-chat`
- **维护方**: 社区
- **协议**: stdio
- **分类**: AI 服务
- **推荐度**: 可选
- **核心功能**: 多模型聊天
在 GitHub 查看