@aetherwealth/mcp 0.1.29 → 0.1.34
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 +40 -3
- package/dist/index.js +30 -30
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,10 +39,13 @@ 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
|
|
48
51
|
|
|
@@ -92,10 +95,20 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
92
95
|
| `list_trades` | List trades by account, status, pair, or date range. |
|
|
93
96
|
| `get_trade` | Fetch one trade by ID. |
|
|
94
97
|
| `list_accounts` | List your trading accounts. |
|
|
98
|
+
| `create_account` | Create a trading account in the journal. |
|
|
95
99
|
| `trade_stats` | Summarize performance, win rate, PnL, and related stats. |
|
|
96
100
|
| `create_trade` | Record a new trade. |
|
|
97
101
|
| `update_trade` | Update fields on an existing trade. |
|
|
98
102
|
| `close_trade` | Close an open trade with exit price and time. |
|
|
103
|
+
| `delete_trade` | Delete one trade from a demo account. |
|
|
104
|
+
| `delete_trades` | Delete matching trades from a demo account. |
|
|
105
|
+
| `import_trades` | Bulk-import up to 500 trades into one account. |
|
|
106
|
+
|
|
107
|
+
### Context
|
|
108
|
+
|
|
109
|
+
| Tool | Purpose |
|
|
110
|
+
| --- | --- |
|
|
111
|
+
| `get_context` | Snapshot accounts, open trades, recent stats, and active alerts. |
|
|
99
112
|
|
|
100
113
|
### Alerts
|
|
101
114
|
|
|
@@ -118,18 +131,41 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
118
131
|
| `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
132
|
| `list_economic_calendar` | List economic calendar events by currency, release, date, or impact. |
|
|
120
133
|
| `get_macro_series` | Fetch macro indicator time series such as CPI or interest-rate data. |
|
|
134
|
+
| `get_macro_indicator` | Fetch curated FXMacroData indicator series with unit and target metadata. |
|
|
121
135
|
| `get_market_config` | Fetch supported instruments and timeframes. |
|
|
122
136
|
|
|
137
|
+
### FX Macro Context
|
|
138
|
+
|
|
139
|
+
| Tool | Purpose |
|
|
140
|
+
| --- | --- |
|
|
141
|
+
| `get_fx_pair_context` | Macro context for both currencies in a pair. |
|
|
142
|
+
| `get_fx_currency_context` | Recent releases, surprises, and derived state for one currency. |
|
|
143
|
+
| `get_fx_predictions` | Model forecasts for upcoming macro releases. |
|
|
144
|
+
| `get_fx_risk_sentiment` | Cross-market risk-on/risk-off sentiment series. |
|
|
145
|
+
| `get_fx_documents` | Source documents behind FX macro data. |
|
|
146
|
+
| `get_fx_sync_state` | Freshness and sync status for FX macro datasets. |
|
|
147
|
+
|
|
123
148
|
### Technical Indicators
|
|
124
149
|
|
|
125
150
|
| Tool | Purpose |
|
|
126
151
|
| --- | --- |
|
|
127
152
|
| `get_indicators` | Compute up to 8 technical indicators for a pair and interval. |
|
|
128
153
|
|
|
154
|
+
### Charts
|
|
155
|
+
|
|
156
|
+
| Tool | Purpose |
|
|
157
|
+
| --- | --- |
|
|
158
|
+
| `render_chart` | Render a candlestick chart image for a pair and timeframe. |
|
|
159
|
+
| `chart_select_pair` | Switch the user's open browser chart to a trading pair. |
|
|
160
|
+
| `chart_change_timeframe` | Change the timeframe of the user's open browser chart. |
|
|
161
|
+
| `chart_draw_shapes` | Draw levels, zones, and position overlays on the open chart. |
|
|
162
|
+
| `chart_remove_drawings` | Remove AI-drawn shapes from the open chart. |
|
|
163
|
+
|
|
129
164
|
## Example Prompts
|
|
130
165
|
|
|
131
166
|
- "List my open trades and group them by pair. Flag anything without a stop
|
|
132
167
|
loss."
|
|
168
|
+
- "Create a demo account called Paper USD with a 10,000 USD starting balance."
|
|
133
169
|
- "Summarize my last 20 closed trades. What setup is leaking the most R?"
|
|
134
170
|
- "What high-impact USD events are left this week, and which open trades overlap
|
|
135
171
|
them?"
|
|
@@ -145,7 +181,8 @@ local process. Set `MCP_TRANSPORT=http`, `MCP_HTTP_AUTH=oauth`, and
|
|
|
145
181
|
cost-sensitive indicator calls.
|
|
146
182
|
- Technical indicators include request, active-pair, cache, and upstream credit
|
|
147
183
|
gates.
|
|
148
|
-
-
|
|
184
|
+
- Trade deletion is limited to demo accounts. Live-account trades cannot be
|
|
185
|
+
deleted through this MCP.
|
|
149
186
|
- The MCP does not execute trades or route broker orders.
|
|
150
187
|
|
|
151
188
|
## Updating
|