Metadata-Version: 2.4
Name: aion-indian-market-intelligence-mcp
Version: 1.0.0
Summary: MCP server wrapper for the hosted AION Indian Market Intelligence API.
Author-email: AION Analytics <info@aiondashboard.site>
License-Expression: AGPL-3.0-or-later
Project-URL: Homepage, https://github.com/AION-Analytics/aion-indian-market-intelligence
Project-URL: Documentation, https://dashboard.aiondashboard.site/models/indian-market-intelligence
Project-URL: Issues, https://github.com/AION-Analytics/aion-indian-market-intelligence/issues
Keywords: aion,mcp,indian-market-intelligence,sector-impact-analysis,financial-news,hosted-api-client
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: aion-indian-market-intelligence>=1.0.8
Requires-Dist: mcp>=1.27

# aion-indian-market-intelligence-mcp

MCP server wrapper for the hosted AION Indian Market Intelligence API.

This package does not contain a local market engine, taxonomy, rule files,
models, weights, or offline inference runtime. It installs a command that calls
the public `aion-indian-market-intelligence` client package, which sends
requests to the hosted API.

## Install

Run directly with `uvx`:

```bash
uvx aion-indian-market-intelligence-mcp
```

Or install it:

```bash
pip install aion-indian-market-intelligence-mcp
aion-indian-market-intelligence-mcp
```

## API Key

Set your hosted API key before starting the MCP server:

```bash
export AION_API_KEY="<your_api_key>"
```

The hosted API endpoint is:

```text
POST https://api.aiondashboard.site/v1/analyze
```

## Claude Desktop

```json
{
  "mcpServers": {
    "aion-indian-market-intelligence": {
      "command": "uvx",
      "args": ["aion-indian-market-intelligence-mcp"],
      "env": {
        "AION_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}
```

## Tool

The MCP server exposes one tool:

```text
analyze_news
```

Input:

```json
{
  "headline": "RBI hikes repo rate by 25 bps",
  "published_at": "2026-06-11T09:00:00+05:30"
}
```

Output:

```json
{
  "sector_vector": {}
}
```

Full hosted API responses may include additional public response keys depending
on entitlement and API version. This wrapper is for integration only; it is not
investment advice, price prediction, or an execution system.
