Claude 桌面版能够为用户提供便捷的交互体验,支持在 macOS 和 Windows 系统上流畅使用。以下是详细的安装、配置等使用指引。
Claude 桌面版当前适用于 macOS 和 Windows 系统。你可以前往 这里 下载安装 Claude 桌面版。
你需要按照 此处 的通用说明配置 Claude 桌面客户端。
你可以在以下位置找到你的 Claude 配置文件:
~/Library/Application Support/Claude/claude_desktop_config.json
然后根据下面的说明选择最适合你的方法,并将其添加到 claude_desktop_config.json
中。
(选项 1)从 PyPI 安装发行版
pip install chronulus-mcp
(选项 2)从 Github 克隆并安装
git clone https://github.com/ChronulusAI/chronulus-mcp.git
cd chronulus-mcp
pip install .
在 claude_desktop_config.json
中添加以下配置:
{
"mcpServers": {
"chronulus-agents": {
"command": "python",
"args": ["-m", "chronulus-mcp"],
"env": {
"CHRONULUS_API_KEY": "your_api_key"
}
}
}
}
⚠️ 重要提示
如果你的 API 密钥包含特殊字符,记得在 JSON 中正确转义。
如果你更喜欢使用 Docker,可以参考以下步骤:
docker pull chronulus/mcp-server:latest
docker run -it --name mcp-server -p 8000:8000 chronulus/mcp-server:latest
claude_desktop_config.json
中添加以下配置:{
"mcpServers": {
"chronulus-agents": {
"command": "docker",
"args": ["run", "-it", "--name", "mcp-server", "-p", "8000:8000", "chronulus/mcp-server:latest"]
}
}
}
如果你已经安装了 uvx
,可以执行以下命令:
npx uvx mcp-server
然后在 claude_desktop_config.json
中添加以下配置:
{
"mcpServers": {
"chronulus-agents": {
"command": "node",
"args": ["index.js"]
}
}
}
⚠️ 重要提示
上述配置假设你的 MCP 服务器启动脚本为
index.js
。
如果你想添加其他服务器,例如文件系统或抓取工具,可以在 claude_desktop_config.json
中添加以下内容:
{
"mcpServers": {
"chronulus-agents": { ... },
"filesystem": {
"command": "node",
"args": ["mcp-server-filesystem", "/path/to/AIWorkspace"]
},
"fetch": {
"command": "node",
"args": ["mcp-server-fetch"]
}
}
}
为了优化你在 Claude 中的多工具协作体验,建议在 Claude 的偏好设置中添加以下内容: