chronulus-mcp


Namechronulus-mcp JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
SummaryAn MCP Server for Chronulus AI Forecasting and Prediction Agents
upload_time2025-02-26 20:15:46
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords agents forecasting llm mcp prediction timeseries
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
<img width="150px" src="https://www.chronulus.com/brand-assets/chronulus-logo-blue-on-alpha-square.png" alt="Chronulus AI">
    <h1 align="center">MCP Server for Chronulus</h1>
    <h3 align="center">Chat with Chronulus AI Forecasting & Prediction Agents in Claude</h3>
</div>




### Quickstart: Claude for Desktop

#### Install 

Claude for Desktop is currently available on macOS and Windows.

Install Claude for Desktop [here](https://claude.ai/download)

#### Configuration

Follow the general instructions [here](https://modelcontextprotocol.io/quickstart/user) to configure the Claude desktop client.

You can find your Claude config at one of the following locations:

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

Then choose one of the following methods that best suits your needs and add it to your `claude_desktop_config.json`

<details>
<summary>Using pip</summary>

(Option 1) Install release from PyPI
```bash 
pip install chronulus-mcp
```


(Option 2) Install from Github
```bash 
git clone https://github.com/ChronulusAI/chronulus-mcp.git
cd chronulus-mcp
pip install .
```



```json 
{
  "mcpServers": {
    "chronulus-agents": {
      "command": "python",
      "args": ["-m", "chronulus_mcp"],
      "env": {
        "CHRONULUS_API_KEY": "<YOUR_CHRONULUS_API_KEY>"
      }
    }
  }
}
```
</details>


<details>
<summary>Using docker</summary>

Here we will build a docker image called 'chronulus-mcp' that we can reuse in our Claude config.

```bash 
git clone https://github.com/ChronulusAI/chronulus-mcp.git
cd chronulus-mcp
 docker build . -t 'chronulus-mcp'
```

In your Claude config, be sure that the final argument matches the name you give to the docker image in the build command.

```json 
{
  "mcpServers": {
    "chronulus-agents": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "CHRONULUS_API_KEY", "chronulus-mcp"],
      "env": {
        "CHRONULUS_API_KEY": "<YOUR_CHRONULUS_API_KEY>"
      }
    }
  }
}
```

</details>

<details>
<summary>Using uv</summary>

`uv` will pull the latest version of `chronulus-mcp` from the PyPI registry, install it, and then run it.

```json 
{
  "mcpServers": {
    "chronulus-agents": {
      "command": "uv",
      "args": ["run", "--with", "chronulus-mcp", "chronulus_mcp"],
      "env": {
        "CHRONULUS_API_KEY": "<YOUR_CHRONULUS_API_KEY>"
      }
    }
  }
}
```

</details>
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "chronulus-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "agents, forecasting, llm, mcp, prediction, timeseries",
    "author": null,
    "author_email": "Chronulus AI <jeremy@chronulus.com>",
    "download_url": "https://files.pythonhosted.org/packages/32/30/202adeb558dc6f1c16d9f8cb02fe0280f28041a0fc9af2be96b73883e5aa/chronulus_mcp-0.0.2.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n<img width=\"150px\" src=\"https://www.chronulus.com/brand-assets/chronulus-logo-blue-on-alpha-square.png\" alt=\"Chronulus AI\">\n    <h1 align=\"center\">MCP Server for Chronulus</h1>\n    <h3 align=\"center\">Chat with Chronulus AI Forecasting & Prediction Agents in Claude</h3>\n</div>\n\n\n\n\n### Quickstart: Claude for Desktop\n\n#### Install \n\nClaude for Desktop is currently available on macOS and Windows.\n\nInstall Claude for Desktop [here](https://claude.ai/download)\n\n#### Configuration\n\nFollow the general instructions [here](https://modelcontextprotocol.io/quickstart/user) to configure the Claude desktop client.\n\nYou can find your Claude config at one of the following locations:\n\n- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\n- Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`\n\nThen choose one of the following methods that best suits your needs and add it to your `claude_desktop_config.json`\n\n<details>\n<summary>Using pip</summary>\n\n(Option 1) Install release from PyPI\n```bash \npip install chronulus-mcp\n```\n\n\n(Option 2) Install from Github\n```bash \ngit clone https://github.com/ChronulusAI/chronulus-mcp.git\ncd chronulus-mcp\npip install .\n```\n\n\n\n```json \n{\n  \"mcpServers\": {\n    \"chronulus-agents\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"chronulus_mcp\"],\n      \"env\": {\n        \"CHRONULUS_API_KEY\": \"<YOUR_CHRONULUS_API_KEY>\"\n      }\n    }\n  }\n}\n```\n</details>\n\n\n<details>\n<summary>Using docker</summary>\n\nHere we will build a docker image called 'chronulus-mcp' that we can reuse in our Claude config.\n\n```bash \ngit clone https://github.com/ChronulusAI/chronulus-mcp.git\ncd chronulus-mcp\n docker build . -t 'chronulus-mcp'\n```\n\nIn your Claude config, be sure that the final argument matches the name you give to the docker image in the build command.\n\n```json \n{\n  \"mcpServers\": {\n    \"chronulus-agents\": {\n      \"command\": \"docker\",\n      \"args\": [\"run\", \"-i\", \"--rm\", \"-e\", \"CHRONULUS_API_KEY\", \"chronulus-mcp\"],\n      \"env\": {\n        \"CHRONULUS_API_KEY\": \"<YOUR_CHRONULUS_API_KEY>\"\n      }\n    }\n  }\n}\n```\n\n</details>\n\n<details>\n<summary>Using uv</summary>\n\n`uv` will pull the latest version of `chronulus-mcp` from the PyPI registry, install it, and then run it.\n\n```json \n{\n  \"mcpServers\": {\n    \"chronulus-agents\": {\n      \"command\": \"uv\",\n      \"args\": [\"run\", \"--with\", \"chronulus-mcp\", \"chronulus_mcp\"],\n      \"env\": {\n        \"CHRONULUS_API_KEY\": \"<YOUR_CHRONULUS_API_KEY>\"\n      }\n    }\n  }\n}\n```\n\n</details>",
    "bugtrack_url": null,
    "license": null,
    "summary": "An MCP Server for Chronulus AI Forecasting and Prediction Agents",
    "version": "0.0.2",
    "project_urls": null,
    "split_keywords": [
        "agents",
        " forecasting",
        " llm",
        " mcp",
        " prediction",
        " timeseries"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "264c3c1937d5afd2212ce30bf0167d2a8c963bc63e0603bda24dbc17e2603cc3",
                "md5": "9778255f9d153ab536799aa680fa3cf3",
                "sha256": "babf38f15218acf8867e8226255dcc62e0ae9e51c2dfe683dbb8214041cbf1cd"
            },
            "downloads": -1,
            "filename": "chronulus_mcp-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9778255f9d153ab536799aa680fa3cf3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 11082,
            "upload_time": "2025-02-26T20:15:45",
            "upload_time_iso_8601": "2025-02-26T20:15:45.231418Z",
            "url": "https://files.pythonhosted.org/packages/26/4c/3c1937d5afd2212ce30bf0167d2a8c963bc63e0603bda24dbc17e2603cc3/chronulus_mcp-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3230202adeb558dc6f1c16d9f8cb02fe0280f28041a0fc9af2be96b73883e5aa",
                "md5": "c3f133639f26804b31a1ed8759e58371",
                "sha256": "a5aa81dd6cde0f365ebc6ed06dbb5d2327dc02c0ac499f6354da3a635f463a1f"
            },
            "downloads": -1,
            "filename": "chronulus_mcp-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "c3f133639f26804b31a1ed8759e58371",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 62450,
            "upload_time": "2025-02-26T20:15:46",
            "upload_time_iso_8601": "2025-02-26T20:15:46.953982Z",
            "url": "https://files.pythonhosted.org/packages/32/30/202adeb558dc6f1c16d9f8cb02fe0280f28041a0fc9af2be96b73883e5aa/chronulus_mcp-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-26 20:15:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "chronulus-mcp"
}
        
Elapsed time: 1.32558s