Back to MCP directory
publicPublicdnsLocal runtime

chronulus-mcp

Chronulus MCP服务是一个为Claude AI设计的预测代理服务器,支持通过多种方式安装配置,包括pip、docker和uvx,并可与文件系统、网络请求等服务集成。

article

README

🚀 快速入门:Claude桌面版

Claude 桌面版能够为用户提供便捷的交互体验,支持在 macOS 和 Windows 系统上流畅使用。以下是详细的安装、配置等使用指引。

🚀 快速开始

安装

Claude 桌面版当前适用于 macOS 和 Windows 系统。你可以前往 这里 下载安装 Claude 桌面版。

配置

你需要按照 此处 的通用说明配置 Claude 桌面客户端。

你可以在以下位置找到你的 Claude 配置文件:

  • macOS:~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows:%APPDATA%\Claude\claude_desktop_config.json

然后根据下面的说明选择最适合你的方法,并将其添加到 claude_desktop_config.json 中。

使用 pip 安装

(选项 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,可以参考以下步骤:

  1. 确保你已经安装了 Docker 并且 Docker 守护程序正在运行。
  2. 在终端或命令提示符中执行以下命令拉取 Docker 镜像:
    docker pull chronulus/mcp-server:latest
    
  3. 运行容器:
    docker run -it --name mcp-server -p 8000:8000 chronulus/mcp-server:latest
    
  4. claude_desktop_config.json 中添加以下配置:
    {
      "mcpServers": {
        "chronulus-agents": {
          "command": "docker",
          "args": ["run", "-it", "--name", "mcp-server", "-p", "8000:8000", "chronulus/mcp-server:latest"]
        }
      }
    }
    
使用 uvx 安装

如果你已经安装了 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 中的多工具协作体验,建议在 Claude 的偏好设置中添加以下内容:

  • 工具相关协议
  • 文件系统工具指令
  • Chronulus Agent 工具指令
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client