Metadata-Version: 2.4
Name: autots-mcp
Version: 1.0.0
Summary: Convenience package to install AutoTS with MCP dependencies
Author-email: Colin Catlin <colin.catlin@gmail.com>
License: MIT License
Project-URL: Homepage, https://github.com/winedarksea/AutoTS
Project-URL: Bug Tracker, https://github.com/winedarksea/AutoTS/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: autots[mcp]>=1.0.0
Dynamic: license-file

# autots-mcp

Convenience package to install AutoTS with MCP (Model Context Protocol) dependencies.

## Installation

```bash
pip install autots-mcp
```

This will automatically install AutoTS with all MCP-related dependencies including:
- holidays
- fredapi
- lightgbm
- joblib
- scipy
- numexpr
- bottleneck
- yfinance
- pytrends
- matplotlib
- requests
- seaborn
- mcp

## Usage

After installation, you can use AutoTS with MCP support:

```python
from autots import AutoTS

# Use AutoTS as normal
model = AutoTS()
```

The MCP server can be invoked via:

```bash
autots-mcp
```

## About

This is a convenience wrapper package that has no code of its own. It simply declares `autots[mcp]` as a dependency to make installation easier.

For full AutoTS documentation, visit: https://github.com/winedarksea/AutoTS
