@aetherwealth/mcp
Advanced tools
+64
| AETHER WEALTH CLIENT SOFTWARE LICENSE | ||
| Version 1.0 — July 15, 2026 | ||
| Copyright (c) 2026 Aether Wealth Advisors Pvt Ltd. All rights reserved. | ||
| This license applies to the @aetherwealth/mcp software (the "Software"). | ||
| 1. Limited permission | ||
| Subject to this license and the Aether Wealth Terms of Service, Aether Wealth | ||
| Advisors Pvt Ltd grants you a limited, non-exclusive, non-transferable, and | ||
| non-sublicensable right to install and run official, unmodified copies of the | ||
| Software for your personal or internal business use of Aether Wealth. | ||
| 2. Restrictions | ||
| Except where applicable law does not allow the restriction, you may not: | ||
| - copy the Software except as reasonably necessary to install, use, or back it up; | ||
| - modify the Software or create derivative works; | ||
| - distribute, publish, sell, resell, rent, lease, or sublicense the Software; | ||
| - offer the Software as a service to third parties; | ||
| - reverse engineer, decompile, or disassemble the Software; | ||
| - remove copyright, license, or attribution notices; or | ||
| - bypass authentication, user-approval, rate-limit, or security controls. | ||
| 3. Services and third-party software | ||
| This license does not grant access to Aether Wealth services. Service use is | ||
| governed by the Terms of Service at https://aetherwealth.ai/terms. | ||
| Third-party components are licensed by their respective owners under the terms | ||
| identified in the package's third-party notices. This license does not restrict | ||
| rights granted under those third-party licenses. | ||
| 4. Ownership | ||
| Aether Wealth Advisors Pvt Ltd and its licensors retain all rights, title, and | ||
| interest in the Software. No rights are granted except those stated above. | ||
| 5. Termination | ||
| This license terminates automatically if you materially breach it. On | ||
| termination, you must stop using and delete the Software. Sections 3 through 7 | ||
| survive termination. | ||
| 6. Disclaimer and liability | ||
| THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE", WITHOUT WARRANTIES OF ANY | ||
| KIND, TO THE MAXIMUM EXTENT PERMITTED BY LAW. | ||
| TO THE MAXIMUM EXTENT PERMITTED BY LAW, AETHER WEALTH ADVISORS PVT LTD WILL NOT | ||
| BE LIABLE FOR INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, | ||
| OR FOR LOST PROFITS, DATA, OR TRADING LOSSES. ITS TOTAL LIABILITY RELATING TO | ||
| THE SOFTWARE WILL NOT EXCEED THE AMOUNT YOU PAID FOR THE SOFTWARE DURING THE | ||
| TWELVE MONTHS BEFORE THE CLAIM. NOTHING IN THIS LICENSE EXCLUDES LIABILITY THAT | ||
| CANNOT LAWFULLY BE EXCLUDED. | ||
| 7. Governing law | ||
| This license is governed by the laws of India. The courts of Bengaluru, | ||
| Karnataka have exclusive jurisdiction. | ||
| Questions: infra@aetherwealth.ai |
Sorry, the diff of this file is not supported yet
+12
-10
| { | ||
| "name": "@aetherwealth/mcp", | ||
| "version": "0.1.36", | ||
| "description": "Official Aether Wealth MCP server for AI trading assistants: OAuth access to your trading journal, alerts, market data, macro calendar, and technical indicators.", | ||
| "mcpName": "ai.aetherwealth/mcp", | ||
| "version": "0.2.0", | ||
| "description": "Official Aether Wealth MCP server for journals, alerts, forex and crypto market context, and approval-governed broker actions.", | ||
| "type": "module", | ||
@@ -10,3 +11,6 @@ "bin": { | ||
| "files": [ | ||
| "dist" | ||
| "dist", | ||
| "README.md", | ||
| "LICENSE", | ||
| "THIRD_PARTY_NOTICES" | ||
| ], | ||
@@ -31,2 +35,4 @@ "dependencies": { | ||
| "forex", | ||
| "crypto", | ||
| "broker", | ||
| "market data", | ||
@@ -36,12 +42,8 @@ "technical indicators", | ||
| ], | ||
| "license": "UNLICENSED", | ||
| "author": "Aether Wealth Advisors Pvt Ltd <infra@aetherwealth.ai>", | ||
| "license": "SEE LICENSE IN LICENSE", | ||
| "homepage": "https://aetherwealth.ai/mcp", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/Opus-Aether-AI/webapp.git", | ||
| "directory": "apps/aether-wealth-mcp" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/Opus-Aether-AI/webapp/issues" | ||
| "email": "infra@aetherwealth.ai" | ||
| } | ||
| } |
+18
-15
@@ -48,11 +48,11 @@ # Aether Wealth MCP Server | ||
| market config | ||
| - Render chart images and drive an open browser chart | ||
| - Render chart images | ||
| - Compute technical indicators such as RSI, MACD, EMA, Bollinger Bands, ATR, | ||
| ADX, Supertrend, and more | ||
| - Propose broker trade intents and execute only user-confirmed email/app/auto | ||
| intents; push-mode intents execute only after the user taps Approve in the app | ||
| - Propose broker trade intents; email/app modes require a user-provided code, | ||
| automatic mode does not require a per-trade code, and push mode requires the | ||
| user to tap Approve in the app | ||
| Aether Wealth broker execution is intent-based: the assistant can propose, but | ||
| the backend enforces the selected user confirmation channel before any order is | ||
| placed. | ||
| the backend enforces the connection's approval mode before any order is placed. | ||
@@ -168,9 +168,10 @@ ## Authentication | ||
| | `broker_connection_status` | Read the current live broker connection status. | | ||
| | `disconnect_broker` | Disarm broker trading immediately and cancel pending intents. | | ||
| | `set_broker_approval_mode` | Switch confirmation between `app_otp`, `email_otp`, and `push`; `push` requires an active app push subscription. | | ||
| | `propose_trade` | Size and propose a trade intent. Push-mode proposals notify the user's device. | | ||
| | `execute_trade` | Execute email_otp/app_otp/auto intents after the required confirmation; push intents are blocked here. | | ||
| | `execute_trade` | Execute email/app intents with a code or automatic-mode intents without one; push intents are blocked here. | | ||
| | `trade_intent_status` | Check whether a proposed intent was approved, executed, expired, cancelled, or failed. | | ||
| | `cancel_trade_intent` | Cancel a pending proposed broker trade. | | ||
| | `close_position` | Close an open broker position fully or partially. | | ||
| | `modify_position` | Adjust stop-loss or take-profit without increasing risk. | | ||
| | `close_position` | Propose closing an open broker position fully or partially. | | ||
| | `modify_position` | Propose stop-loss or take-profit changes without increasing risk. | | ||
@@ -182,6 +183,2 @@ ### Charts | ||
| | `render_chart` | Render a candlestick chart image for a pair and timeframe. | | ||
| | `chart_select_pair` | Switch the user's open browser chart to a trading pair. | | ||
| | `chart_change_timeframe` | Change the timeframe of the user's open browser chart. | | ||
| | `chart_draw_shapes` | Draw levels, zones, and position overlays on the open chart. | | ||
| | `chart_remove_drawings` | Remove AI-drawn shapes from the open chart. | | ||
@@ -210,5 +207,5 @@ ## Example Prompts | ||
| deleted through this MCP. | ||
| - Broker orders require backend-enforced confirmation. Push-mode intents cannot | ||
| be executed by the assistant; use `trade_intent_status` to observe the user's | ||
| app approval outcome. | ||
| - Broker orders follow the user's backend-enforced approval mode. Push-mode | ||
| intents cannot be executed by the assistant; automatic mode requires no | ||
| separate approval for each trade. | ||
@@ -230,2 +227,8 @@ ## Updating | ||
| - Tool reference: https://aetherwealth.ai/mcp-tools.json | ||
| - Terms: https://aetherwealth.ai/terms | ||
| - Privacy: https://aetherwealth.ai/privacy | ||
| - npm package: https://www.npmjs.com/package/@aetherwealth/mcp | ||
| ## License | ||
| Proprietary. See the `LICENSE` file included with this package. |
Sorry, the diff of this file is too big to display
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Unidentified License
LicenseSomething that seems like a license was found, but its contents could not be matched with a known license.
Found 2 instances
Explicitly Unlicensed Item
LicenseSomething was found which is explicitly marked as unlicensed.
Misc. License Issues
LicenseA package's licensing information has fine-grained problems.
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
648902
1.36%5
66.67%0
-100%0
-100%80
Infinity%2473
0.28%1
-50%230
1.32%2
Infinity%30
7.14%