supergravity-mcp 0.1.2 → 0.1.3
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 +20 -15
- package/package.json +1 -1
- package/skills/{supergravity → delegate}/SKILL.md +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# supergravity-mcp
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
An MCP server that lets Claude Code (or any MCP client) delegate tasks to the
|
|
4
6
|
**Google Antigravity** desktop app — by driving its real, already-logged-in UI.
|
|
5
7
|
No reverse engineering, no extracted credentials, no unofficial API calls.
|
|
@@ -27,33 +29,36 @@ same way a human would use it, so it works anywhere the app itself works.
|
|
|
27
29
|
|
|
28
30
|
## Setup
|
|
29
31
|
|
|
30
|
-
```bash
|
|
31
|
-
npm install
|
|
32
|
-
npm run build
|
|
33
|
-
```
|
|
34
|
-
|
|
35
32
|
Antigravity must be installed and already signed in. By default the tool
|
|
36
33
|
looks for it at `/Applications/Antigravity.app` or `~/Desktop/Antigravity.app`;
|
|
37
34
|
set `ANTIGRAVITY_APP_PATH` if it lives somewhere else.
|
|
38
35
|
|
|
39
|
-
|
|
36
|
+
### Easiest: install the plugin (MCP server + skill together)
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
claude plugin marketplace add presidentrice/supergravity-mcp
|
|
40
|
+
claude plugin install supergravity@supergravity-mcp
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
This gets you both the `delegate_to_antigravity` / `get_antigravity_quota`
|
|
44
|
+
tools and the `supergravity:delegate` skill, which teaches Claude how to
|
|
45
|
+
route natural requests ("use gemini", "ask antigravity", "check antigravity's
|
|
46
|
+
quota") to the right tool call and model.
|
|
47
|
+
|
|
48
|
+
### Or: just the MCP server, no skill
|
|
40
49
|
|
|
41
50
|
```bash
|
|
42
51
|
claude mcp add supergravity -- npx -y supergravity-mcp
|
|
43
52
|
```
|
|
44
53
|
|
|
45
|
-
|
|
54
|
+
Works fine without the skill — Claude still has the tools, just less
|
|
55
|
+
built-in guidance on picking a model or handling a quota-exhausted error.
|
|
46
56
|
|
|
47
|
-
|
|
48
|
-
("use gemini", "ask antigravity", "check antigravity's quota") to the right
|
|
49
|
-
tool call and model — without it, Claude still has the tools, just less
|
|
50
|
-
guidance on picking a model or handling a quota-exhausted error. Install it
|
|
51
|
-
globally so it applies everywhere:
|
|
57
|
+
### Building from source
|
|
52
58
|
|
|
53
59
|
```bash
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
https://raw.githubusercontent.com/presidentrice/supergravity-mcp/main/skills/supergravity/SKILL.md
|
|
60
|
+
npm install
|
|
61
|
+
npm run build
|
|
57
62
|
```
|
|
58
63
|
|
|
59
64
|
## The tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supergravity-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "🚀 MCP server that lets Claude (or any MCP client) delegate tasks to Google's Antigravity desktop app 🌌. Built for Intel Macs 💻 that Antigravity's own CLI doesn't support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
description: Use when the user wants to delegate a task to Google's Antigravity desktop app — phrases like "use gemini", "ask antigravity", "have claude in antigravity do this", "offload this", or "check antigravity's quota". Explains which model to pick and how to handle a disabled-send-button error. Requires the supergravity
|
|
2
|
+
name: delegate
|
|
3
|
+
description: Use when the user wants to delegate a task to Google's Antigravity desktop app — phrases like "use gemini", "ask antigravity", "have claude in antigravity do this", "offload this", or "check antigravity's quota". Explains which model to pick and how to handle a disabled-send-button error. Requires the supergravity MCP server (delegate_to_antigravity, get_antigravity_quota tools) to be connected.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
# delegate
|
|
7
7
|
|
|
8
8
|
Antigravity is a separate AI desktop app (Google's). This skill runs tasks
|
|
9
9
|
through it via the `supergravity-mcp` MCP server, instead of answering
|