drio
Open app

MCP Server for Chronulus

Source

MCP Server for Chronulus AI Forecasting and Prediction Agents

Catalog onlyCatalog onlySTDIO

Overview

Chronulus MCP is a server designed for Chronulus AI Forecasting and Prediction Agents, enabling users to interact with AI models for predictive analytics.

To use Chronulus MCP, install the Claude for Desktop application, configure it with your Chronulus API key, and set up the server using either pip, Docker, or uvx.

  • Integration with Claude for Desktop for seamless AI interactions. - Multiple installation methods: pip, Docker, and uvx. - Configuration options for personalized setup.
  1. Forecasting market trends using AI.
  2. Predicting user behavior in applications.
  3. Analyzing data for research and development purposes.

Add to your AI client

Use these steps to connect MCP Server for Chronulus in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "chronulus-mcp-chronulusai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "chronulus-mcp-chronulusai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "chronulus-mcp-chronulusai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "chronulus-mcp-chronulusai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "chronulus-mcp-chronulusai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "chronulus-mcp-chronulusai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chronulus-mcp-chronulusai"
      ]
    }
  }
}

FAQ

What platforms does Chronulus MCP support?

Chronulus MCP is available for macOS and Windows.

Is there a cost associated with using Chronulus MCP?

Chronulus MCP is free to use, but requires a Chronulus API key for access.

How can I troubleshoot installation issues?

Ensure you have the correct paths set for Python or uvx, and refer to the installation documentation for detailed guidance.