@aetherwealth/mcp 0.1.36 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,64 @@
1
+ AETHER WEALTH CLIENT SOFTWARE LICENSE
2
+ Version 1.0 — July 15, 2026
3
+
4
+ Copyright (c) 2026 Aether Wealth Advisors Pvt Ltd. All rights reserved.
5
+
6
+ This license applies to the @aetherwealth/mcp software (the "Software").
7
+
8
+ 1. Limited permission
9
+
10
+ Subject to this license and the Aether Wealth Terms of Service, Aether Wealth
11
+ Advisors Pvt Ltd grants you a limited, non-exclusive, non-transferable, and
12
+ non-sublicensable right to install and run official, unmodified copies of the
13
+ Software for your personal or internal business use of Aether Wealth.
14
+
15
+ 2. Restrictions
16
+
17
+ Except where applicable law does not allow the restriction, you may not:
18
+
19
+ - copy the Software except as reasonably necessary to install, use, or back it up;
20
+ - modify the Software or create derivative works;
21
+ - distribute, publish, sell, resell, rent, lease, or sublicense the Software;
22
+ - offer the Software as a service to third parties;
23
+ - reverse engineer, decompile, or disassemble the Software;
24
+ - remove copyright, license, or attribution notices; or
25
+ - bypass authentication, user-approval, rate-limit, or security controls.
26
+
27
+ 3. Services and third-party software
28
+
29
+ This license does not grant access to Aether Wealth services. Service use is
30
+ governed by the Terms of Service at https://aetherwealth.ai/terms.
31
+
32
+ Third-party components are licensed by their respective owners under the terms
33
+ identified in the package's third-party notices. This license does not restrict
34
+ rights granted under those third-party licenses.
35
+
36
+ 4. Ownership
37
+
38
+ Aether Wealth Advisors Pvt Ltd and its licensors retain all rights, title, and
39
+ interest in the Software. No rights are granted except those stated above.
40
+
41
+ 5. Termination
42
+
43
+ This license terminates automatically if you materially breach it. On
44
+ termination, you must stop using and delete the Software. Sections 3 through 7
45
+ survive termination.
46
+
47
+ 6. Disclaimer and liability
48
+
49
+ THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE", WITHOUT WARRANTIES OF ANY
50
+ KIND, TO THE MAXIMUM EXTENT PERMITTED BY LAW.
51
+
52
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, AETHER WEALTH ADVISORS PVT LTD WILL NOT
53
+ BE LIABLE FOR INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES,
54
+ OR FOR LOST PROFITS, DATA, OR TRADING LOSSES. ITS TOTAL LIABILITY RELATING TO
55
+ THE SOFTWARE WILL NOT EXCEED THE AMOUNT YOU PAID FOR THE SOFTWARE DURING THE
56
+ TWELVE MONTHS BEFORE THE CLAIM. NOTHING IN THIS LICENSE EXCLUDES LIABILITY THAT
57
+ CANNOT LAWFULLY BE EXCLUDED.
58
+
59
+ 7. Governing law
60
+
61
+ This license is governed by the laws of India. The courts of Bengaluru,
62
+ Karnataka have exclusive jurisdiction.
63
+
64
+ Questions: infra@aetherwealth.ai
package/README.md CHANGED
@@ -45,15 +45,15 @@ Aether Wealth MCP gives AI assistants a safe tool layer over Aether Wealth:
45
45
  - Create and manage price, trendline, and indicator alerts
46
46
  - Fetch candles, economic calendar events, macro series, FX macro context, and
47
47
  market config
48
- - Render chart images and drive an open browser chart
48
+ - Render chart images
49
49
  - Compute technical indicators such as RSI, MACD, EMA, Bollinger Bands, ATR,
50
50
  ADX, Supertrend, and more
51
- - Propose broker trade intents and execute only user-confirmed email/app/auto
52
- intents; push-mode intents execute only after the user taps Approve in the app
51
+ - Propose broker trade intents; email/app modes require a user-provided code,
52
+ automatic mode does not require a per-trade code, and push mode requires the
53
+ user to tap Approve in the app
53
54
 
54
55
  Aether Wealth broker execution is intent-based: the assistant can propose, but
55
- the backend enforces the selected user confirmation channel before any order is
56
- placed.
56
+ the backend enforces the connection's approval mode before any order is placed.
57
57
 
58
58
  ## Authentication
59
59
 
@@ -164,23 +164,20 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
164
164
  | `list_broker_positions` | List open broker positions with P&L. |
165
165
  | `connect_broker` | Attach the user's already-deployed MetaApi account to a journal account. |
166
166
  | `broker_connection_status` | Read the current live broker connection status. |
167
+ | `disconnect_broker` | Disarm broker trading immediately and cancel pending intents. |
167
168
  | `set_broker_approval_mode` | Switch confirmation between `app_otp`, `email_otp`, and `push`; `push` requires an active app push subscription. |
168
169
  | `propose_trade` | Size and propose a trade intent. Push-mode proposals notify the user's device. |
169
- | `execute_trade` | Execute email_otp/app_otp/auto intents after the required confirmation; push intents are blocked here. |
170
+ | `execute_trade` | Execute email/app intents with a code or automatic-mode intents without one; push intents are blocked here. |
170
171
  | `trade_intent_status` | Check whether a proposed intent was approved, executed, expired, cancelled, or failed. |
171
172
  | `cancel_trade_intent` | Cancel a pending proposed broker trade. |
172
- | `close_position` | Close an open broker position fully or partially. |
173
- | `modify_position` | Adjust stop-loss or take-profit without increasing risk. |
173
+ | `close_position` | Propose closing an open broker position fully or partially. |
174
+ | `modify_position` | Propose stop-loss or take-profit changes without increasing risk. |
174
175
 
175
176
  ### Charts
176
177
 
177
178
  | Tool | Purpose |
178
179
  | --- | --- |
179
180
  | `render_chart` | Render a candlestick chart image for a pair and timeframe. |
180
- | `chart_select_pair` | Switch the user's open browser chart to a trading pair. |
181
- | `chart_change_timeframe` | Change the timeframe of the user's open browser chart. |
182
- | `chart_draw_shapes` | Draw levels, zones, and position overlays on the open chart. |
183
- | `chart_remove_drawings` | Remove AI-drawn shapes from the open chart. |
184
181
 
185
182
  ## Example Prompts
186
183
 
@@ -204,9 +201,9 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
204
201
  gates.
205
202
  - Trade deletion is limited to demo accounts. Live-account trades cannot be
206
203
  deleted through this MCP.
207
- - Broker orders require backend-enforced confirmation. Push-mode intents cannot
208
- be executed by the assistant; use `trade_intent_status` to observe the user's
209
- app approval outcome.
204
+ - Broker orders follow the user's backend-enforced approval mode. Push-mode
205
+ intents cannot be executed by the assistant; automatic mode requires no
206
+ separate approval for each trade.
210
207
 
211
208
  ## Updating
212
209
 
@@ -223,4 +220,10 @@ failing silently.
223
220
  - Trading app: https://app.aetherwealth.ai
224
221
  - MCP page: https://aetherwealth.ai/mcp
225
222
  - Tool reference: https://aetherwealth.ai/mcp-tools.json
223
+ - Terms: https://aetherwealth.ai/terms
224
+ - Privacy: https://aetherwealth.ai/privacy
226
225
  - npm package: https://www.npmjs.com/package/@aetherwealth/mcp
226
+
227
+ ## License
228
+
229
+ Proprietary. See the `LICENSE` file included with this package.
@@ -0,0 +1,89 @@
1
+ THIRD-PARTY SOFTWARE NOTICES
2
+
3
+ MIT-licensed software bundled in this product:
4
+
5
+ - @modelcontextprotocol/sdk 1.29.0
6
+ Copyright (c) 2024 Anthropic, PBC
7
+ - @trpc/client 11.18.0 and @trpc/server 11.17.0
8
+ Copyright (c) 2023 Alex Johansson
9
+ - ajv 8.20.0
10
+ Copyright (c) 2015-2021 Evgeny Poberezkin
11
+ - ajv-formats 3.0.1
12
+ Copyright (c) 2020 Evgeny Poberezkin
13
+ - fast-deep-equal 3.1.3 and json-schema-traverse 1.0.0
14
+ Copyright (c) 2017 Evgeny Poberezkin
15
+ - zod 4.4.3
16
+ Copyright (c) 2025 Colin McDonnell
17
+ - @oxc-project/runtime 0.72.2 (helpers derived from @babel/runtime)
18
+ Copyright (c) 2024-present VoidZero Inc. & Contributors
19
+ Copyright (c) 2023 Boshen
20
+
21
+ MIT License
22
+
23
+ Permission is hereby granted, free of charge, to any person obtaining a copy
24
+ of this software and associated documentation files (the "Software"), to deal
25
+ in the Software without restriction, including without limitation the rights
26
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27
+ copies of the Software, and to permit persons to whom the Software is
28
+ furnished to do so, subject to the following conditions:
29
+
30
+ The above copyright notices and this permission notice shall be included in
31
+ all copies or substantial portions of the Software.
32
+
33
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39
+ SOFTWARE.
40
+
41
+ fast-uri 3.1.2 — BSD-3-Clause
42
+
43
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
44
+ Copyright (c) 2021-present The Fastify team <https://github.com/fastify/fastify#team>
45
+ All rights reserved.
46
+
47
+ Redistribution and use in source and binary forms, with or without
48
+ modification, are permitted provided that the following conditions are met:
49
+ * Redistributions of source code must retain the above copyright
50
+ notice, this list of conditions and the following disclaimer.
51
+ * Redistributions in binary form must reproduce the above copyright
52
+ notice, this list of conditions and the following disclaimer in the
53
+ documentation and/or other materials provided with the distribution.
54
+ * The names of any contributors may not be used to endorse or promote
55
+ products derived from this software without specific prior written
56
+ permission.
57
+
58
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
59
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
60
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
61
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
62
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
64
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
65
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
66
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
67
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68
+
69
+ zod-to-json-schema 3.25.2 — ISC
70
+
71
+ Copyright (c) 2020, Stefan Terdell
72
+
73
+ Permission to use, copy, modify, and/or distribute this software for any
74
+ purpose with or without fee is hereby granted, provided that the above
75
+ copyright notice and this permission notice appear in all copies.
76
+
77
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
78
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
79
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
80
+ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
81
+ RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
82
+ NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
83
+ USE OR PERFORMANCE OF THIS SOFTWARE.
84
+
85
+ Separately installed runtime dependencies:
86
+
87
+ - @napi-rs/keyring 1.3.0 — MIT. Its license is included with the dependency.
88
+ - @resvg/resvg-js 2.6.2 — MPL-2.0. Its license is included with the dependency,
89
+ and its source is available at https://github.com/yisibl/resvg-js.