@aetherwealth/mcp 0.1.29 → 0.1.35
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/README.md +66 -6
- package/dist/index.js +60 -59
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,15 +39,21 @@ Restart your MCP client after adding the server. Then ask it to run the
|
|
|
39
39
|
Aether Wealth MCP gives AI assistants a safe tool layer over Aether Wealth:
|
|
40
40
|
|
|
41
41
|
- Read and summarize your trading journal
|
|
42
|
-
-
|
|
42
|
+
- Create/list accounts and performance stats
|
|
43
43
|
- Create, update, and close trade records
|
|
44
|
+
- Delete trade records only from demo accounts
|
|
44
45
|
- Create and manage price, trendline, and indicator alerts
|
|
45
|
-
- Fetch candles, economic calendar events, macro series,
|
|
46
|
+
- Fetch candles, economic calendar events, macro series, FX macro context, and
|
|
47
|
+
market config
|
|
48
|
+
- Render chart images and drive an open browser chart
|
|
46
49
|
- Compute technical indicators such as RSI, MACD, EMA, Bollinger Bands, ATR,
|
|
47
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
|
|
48
53
|
|
|
49
|
-
Aether Wealth
|
|
50
|
-
|
|
54
|
+
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.
|
|
51
57
|
|
|
52
58
|
## Authentication
|
|
53
59
|
|
|
@@ -65,6 +71,8 @@ Operators can deploy this server as a shared remote MCP endpoint instead of a
|
|
|
65
71
|
local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
66
72
|
`MCP_PUBLIC_ORIGIN=https://<your-host>`. In this mode:
|
|
67
73
|
|
|
74
|
+
- The Aether-hosted endpoint is `https://mcp.aetherwealth.ai`; `/mcp` remains
|
|
75
|
+
available as a legacy connector alias.
|
|
68
76
|
- Each request must carry the caller's own OAuth access token
|
|
69
77
|
(`Authorization: Bearer ...`); MCP clients obtain it via the standard MCP
|
|
70
78
|
auth flow, discovered from `/.well-known/oauth-protected-resource`.
|
|
@@ -92,10 +100,20 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
92
100
|
| `list_trades` | List trades by account, status, pair, or date range. |
|
|
93
101
|
| `get_trade` | Fetch one trade by ID. |
|
|
94
102
|
| `list_accounts` | List your trading accounts. |
|
|
103
|
+
| `create_account` | Create a trading account in the journal. |
|
|
95
104
|
| `trade_stats` | Summarize performance, win rate, PnL, and related stats. |
|
|
96
105
|
| `create_trade` | Record a new trade. |
|
|
97
106
|
| `update_trade` | Update fields on an existing trade. |
|
|
98
107
|
| `close_trade` | Close an open trade with exit price and time. |
|
|
108
|
+
| `delete_trade` | Delete one trade from a demo account. |
|
|
109
|
+
| `delete_trades` | Delete matching trades from a demo account. |
|
|
110
|
+
| `import_trades` | Bulk-import up to 500 trades into one account. |
|
|
111
|
+
|
|
112
|
+
### Context
|
|
113
|
+
|
|
114
|
+
| Tool | Purpose |
|
|
115
|
+
| --- | --- |
|
|
116
|
+
| `get_context` | Snapshot accounts, open trades, recent stats, and active alerts. |
|
|
99
117
|
|
|
100
118
|
### Alerts
|
|
101
119
|
|
|
@@ -118,18 +136,57 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
118
136
|
| `get_candles` | Fetch recent OHLC candles for a pair and timeframe. Returns up to 200 per request (newest 200 by default); use `offset` to page back through the full stored history. |
|
|
119
137
|
| `list_economic_calendar` | List economic calendar events by currency, release, date, or impact. |
|
|
120
138
|
| `get_macro_series` | Fetch macro indicator time series such as CPI or interest-rate data. |
|
|
139
|
+
| `get_macro_indicator` | Fetch curated FXMacroData indicator series with unit and target metadata. |
|
|
121
140
|
| `get_market_config` | Fetch supported instruments and timeframes. |
|
|
122
141
|
|
|
142
|
+
### FX Macro Context
|
|
143
|
+
|
|
144
|
+
| Tool | Purpose |
|
|
145
|
+
| --- | --- |
|
|
146
|
+
| `get_fx_pair_context` | Macro context for both currencies in a pair. |
|
|
147
|
+
| `get_fx_currency_context` | Recent releases, surprises, and derived state for one currency. |
|
|
148
|
+
| `get_fx_predictions` | Model forecasts for upcoming macro releases. |
|
|
149
|
+
| `get_fx_risk_sentiment` | Cross-market risk-on/risk-off sentiment series. |
|
|
150
|
+
| `get_fx_documents` | Source documents behind FX macro data. |
|
|
151
|
+
| `get_fx_sync_state` | Freshness and sync status for FX macro datasets. |
|
|
152
|
+
|
|
123
153
|
### Technical Indicators
|
|
124
154
|
|
|
125
155
|
| Tool | Purpose |
|
|
126
156
|
| --- | --- |
|
|
127
157
|
| `get_indicators` | Compute up to 8 technical indicators for a pair and interval. |
|
|
128
158
|
|
|
159
|
+
### Broker Execution
|
|
160
|
+
|
|
161
|
+
| Tool | Purpose |
|
|
162
|
+
| --- | --- |
|
|
163
|
+
| `get_broker_account` | Read live broker account balance, equity, currency, and connection status. |
|
|
164
|
+
| `list_broker_positions` | List open broker positions with P&L. |
|
|
165
|
+
| `connect_broker` | Attach the user's already-deployed MetaApi account to a journal account. |
|
|
166
|
+
| `broker_connection_status` | Read the current live broker connection status. |
|
|
167
|
+
| `set_broker_approval_mode` | Switch confirmation between `app_otp`, `email_otp`, and `push`; `push` requires an active app push subscription. |
|
|
168
|
+
| `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
|
+
| `trade_intent_status` | Check whether a proposed intent was approved, executed, expired, cancelled, or failed. |
|
|
171
|
+
| `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. |
|
|
174
|
+
|
|
175
|
+
### Charts
|
|
176
|
+
|
|
177
|
+
| Tool | Purpose |
|
|
178
|
+
| --- | --- |
|
|
179
|
+
| `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
|
+
|
|
129
185
|
## Example Prompts
|
|
130
186
|
|
|
131
187
|
- "List my open trades and group them by pair. Flag anything without a stop
|
|
132
188
|
loss."
|
|
189
|
+
- "Create a demo account called Paper USD with a 10,000 USD starting balance."
|
|
133
190
|
- "Summarize my last 20 closed trades. What setup is leaking the most R?"
|
|
134
191
|
- "What high-impact USD events are left this week, and which open trades overlap
|
|
135
192
|
them?"
|
|
@@ -145,8 +202,11 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
145
202
|
cost-sensitive indicator calls.
|
|
146
203
|
- Technical indicators include request, active-pair, cache, and upstream credit
|
|
147
204
|
gates.
|
|
148
|
-
-
|
|
149
|
-
|
|
205
|
+
- Trade deletion is limited to demo accounts. Live-account trades cannot be
|
|
206
|
+
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.
|
|
150
210
|
|
|
151
211
|
## Updating
|
|
152
212
|
|