@yottagraph-app/aether-instructions 1.1.6 → 1.1.7
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/commands/build_my_app.md +21 -11
- package/package.json +1 -1
package/commands/build_my_app.md
CHANGED
|
@@ -28,25 +28,35 @@ Stop here and wait for the user to describe what they want.
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
## Step 2:
|
|
31
|
+
## Step 2: Check MCP Servers
|
|
32
32
|
|
|
33
|
-
Check if
|
|
33
|
+
Check if Lovelace MCP tools are available by looking at your tool list for
|
|
34
|
+
tools like `elemental_get_schema`, `elemental_get_entity`, etc.
|
|
35
|
+
|
|
36
|
+
**If MCP tools are available:** Great — you have access to Lovelace platform
|
|
37
|
+
tools (entity search, market data, news, etc.) that you can use during
|
|
38
|
+
development.
|
|
39
|
+
|
|
40
|
+
**If MCP tools are NOT available:** Check if `.cursor/mcp.json` exists:
|
|
34
41
|
|
|
35
42
|
```bash
|
|
36
43
|
cat .cursor/mcp.json 2>/dev/null
|
|
37
44
|
```
|
|
38
45
|
|
|
39
|
-
|
|
46
|
+
If the file exists but tools aren't showing, they may need to be enabled:
|
|
40
47
|
|
|
41
|
-
>
|
|
42
|
-
>
|
|
43
|
-
>
|
|
48
|
+
> Your project has Lovelace MCP servers configured (`.cursor/mcp.json`),
|
|
49
|
+
> but they don't appear to be active yet. Cursor disables new MCP servers
|
|
50
|
+
> by default.
|
|
44
51
|
>
|
|
45
|
-
>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
52
|
+
> Open **Cursor Settings** (Cmd+Shift+J) → **Tools & MCP** and enable the
|
|
53
|
+
> `lovelace-*` servers listed there. They should show green toggles when
|
|
54
|
+
> active. Let me know when they're enabled (or if you'd like to skip this).
|
|
55
|
+
|
|
56
|
+
Wait for confirmation before proceeding. If the user skips this step or
|
|
57
|
+
the settings panel isn't available (e.g. Cursor Cloud), proceed without
|
|
58
|
+
MCP tools — the app can still be built using the Elemental API client
|
|
59
|
+
(`useElementalClient()`) directly.
|
|
50
60
|
|
|
51
61
|
---
|
|
52
62
|
|