AION Indian Market Intelligence client library and MCP server for structured event intelligence and sector incidence vectors. API key required for inference.
Project description
AION Indian Market Intelligence — Client Library
Structured event intelligence and sector incidence vectors for Indian financial markets.
Distribution name: aion-indian-market-intelligence.
Compatibility note: the Python import path remains aion_news_to_signal, and the legacy console entrypoint remains available for existing integrations.
This package provides:
- A Python client for the AION Indian Market Intelligence API
- An MCP server entrypoint for ChatGPT, Claude, Cursor, and other MCP-compatible tools
- Local data validation and output formatting utilities
This package does NOT contain model weights. Inference requires an API key from https://dashboard.aiondashboard.site/access/register.
Quick Start
from aion_news_to_signal import analyze
# Requires AION_API_KEY environment variable or explicit key
result = analyze("RBI hikes repo rate by 25 bps", api_key="YOUR_KEY")
print(result["sector_vector"])
MCP Server
aion-indian-market-intelligence-mcp
The MCP server requires an API key for inference. Set AION_API_KEY in your environment. Existing users can continue to call aion-news-to-signal-mcp.
API Contract
Production inference flows through the hosted AION API:
POST https://api.aiondashboard.site/v1/analyze- header:
X-API-Key: <key>
import requests
headers = {"X-API-Key": "YOUR_API_KEY"}
resp = requests.post(
"https://api.aiondashboard.site/v1/analyze",
headers=headers,
json={"headline": "RBI hikes repo rate by 25 bps"},
timeout=30,
)
resp.raise_for_status()
print(resp.json()["sector_vector"])
Output Contract
The core output is a structured event-intelligence object. sector_vector is a sector incidence vector: a scored map of which sectors are exposed, supported, or pressured by the event. It is not a directional trade instruction and it is not executable trade guidance.
{
"headline": "string",
"event": "string|null",
"confidence": "float",
"vix_regime": "string",
"sector_vector": {},
"top_positive_sectors": {},
"top_negative_sectors": {},
"sector_directional_bias": {
"positive_bias": [],
"negative_bias": []
},
"stakeholder_views": {},
"raw_assignment": {
"resolved_event_id": "string|null",
"cause_effect_rule_id": "string|null",
"weather_triggered": "bool"
}
}
Important Note
⚠️ This package is a client library, not a self-contained inference engine. It requires a valid API key and internet connectivity to call the AION hosted API. For local/offline inference, contact AION Analytics about enterprise deployment options.
This package provides structured market intelligence. It does not provide investment advice, broker execution, portfolio allocation, directional trade recommendations, or order-routing logic.
Links
- API gateway:
https://dashboard.aiondashboard.site/systems/api-gateway
- Website model page:
https://dashboard.aiondashboard.site/models/news-to-signal
- API key registration:
https://dashboard.aiondashboard.site/access/register
- GitHub:
https://github.com/AION-Analytics/aion-news-to-signal
- Hugging Face model:
https://huggingface.co/AION-Analytics/aion-news-to-signal
- Hugging Face demo:
https://huggingface.co/spaces/AION-Analytics/aion-news-to-signal
- PyPI package:
https://pypi.org/project/aion-indian-market-intelligence/
- Legacy PyPI compatibility package:
https://pypi.org/project/aion-news-to-signal/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aion_indian_market_intelligence-1.0.3.tar.gz.
File metadata
- Download URL: aion_indian_market_intelligence-1.0.3.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d78c30fa15a47288511bc71eb446cca742976172507db857c40e0cd3dcd3a3a2
|
|
| MD5 |
146950405264d37954ded0f96ab16687
|
|
| BLAKE2b-256 |
83b9a74a46e62ef99a0957e5bd544c9a4264b83e109d2f03645762d775904637
|
File details
Details for the file aion_indian_market_intelligence-1.0.3-py3-none-any.whl.
File metadata
- Download URL: aion_indian_market_intelligence-1.0.3-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f08c1778d6f58aaf5e72bf672e41d0d0f53b7c857e4528bca883d3d0a74dd6
|
|
| MD5 |
96e36ef28773b548935aa793beef0765
|
|
| BLAKE2b-256 |
1ae88db1e7c31b93678edb0cfebe7eec00eef50f9ad45354b8699b70dadc881e
|