Skip to content

Commit aeb70b9

Browse files
committed
docs: added MCP integration docs
1 parent 036dba1 commit aeb70b9

14 files changed

Lines changed: 1291 additions & 260 deletions

README.md

Lines changed: 0 additions & 260 deletions
Original file line numberDiff line numberDiff line change
@@ -49,266 +49,6 @@ Built in Go for performance and reliability, the server supports both **Streamab
4949
5050
---
5151

52-
## Quick Start
53-
54-
### Cursor
55-
56-
> [One-click install for Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=createos&config=eyJ1cmwiOiJodHRwczovL2FwaS1jcmVhdGVvcy5ub2Rlb3BzLm5ldHdvcmsvbWNwIiwidHlwZSI6Imh0dHAiLCJoZWFkZXJzIjp7IlgtQXBpLUtleSI6IkNSRUFURU9TX0FQSV9LRVkifX0=) (replace the API key after install)
57-
58-
Or manually add to `.cursor/mcp.json`:
59-
60-
```json
61-
{
62-
"mcpServers": {
63-
"createos": {
64-
"url": "https://api-createos.nodeops.network/mcp",
65-
"type": "http",
66-
"headers": {
67-
"X-Api-Key": "CREATEOS_API_KEY"
68-
},
69-
"inputs": []
70-
}
71-
}
72-
}
73-
```
74-
75-
**Setup:** Settings → MCP → New MCP Server → paste config → save → restart Cursor → verify under Settings → Tools & MCP.
76-
77-
<details>
78-
<summary>📖 Full Cursor docs</summary>
79-
80-
See the [Cursor integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Cursor) for screenshots and video walkthrough.
81-
</details>
82-
83-
---
84-
85-
### VS Code (GitHub Copilot)
86-
87-
Add to `.vscode/mcp.json` in your workspace:
88-
89-
```json
90-
{
91-
"servers": {
92-
"createos": {
93-
"url": "https://api-createos.nodeops.network/mcp",
94-
"type": "http",
95-
"headers": {
96-
"X-Api-Key": "CREATEOS_API_KEY"
97-
}
98-
}
99-
},
100-
"inputs": []
101-
}
102-
```
103-
104-
**Setup:** Create `.vscode/mcp.json` → paste config → save → restart VS Code.
105-
106-
<details>
107-
<summary>📖 Full VS Code docs</summary>
108-
109-
See the [VS Code integration guide](https://nodeops.network/createos/docs/Integrations/Integration-VS-Code) for screenshots and video walkthrough.
110-
</details>
111-
112-
---
113-
114-
### Claude Code
115-
116-
Run in your terminal:
117-
118-
```bash
119-
claude mcp add createos-mcp \
120-
--transport http \
121-
https://api-createos.nodeops.network/mcp \
122-
--header "X-API-Key: CREATEOS_API_KEY"
123-
```
124-
125-
**Verify:**
126-
127-
```bash
128-
claude mcp list
129-
# ✓ createos-mcp connected
130-
```
131-
132-
<details>
133-
<summary>📖 Full Claude Code docs</summary>
134-
135-
See the [Claude Code integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Claude-Code) for the complete setup and troubleshooting checklist.
136-
</details>
137-
138-
---
139-
140-
### Claude Desktop
141-
142-
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
143-
144-
```json
145-
{
146-
"mcpServers": {
147-
"createos": {
148-
"url": "https://api-createos.nodeops.network/mcp",
149-
"type": "http",
150-
"headers": {
151-
"X-Api-Key": "CREATEOS_API_KEY"
152-
}
153-
}
154-
}
155-
}
156-
```
157-
158-
---
159-
160-
### Windsurf
161-
162-
Add to your Windsurf MCP config (`mcp.json`):
163-
164-
```json
165-
{
166-
"mcpServers": {
167-
"createos": {
168-
"url": "https://api-createos.nodeops.network/mcp",
169-
"headers": {
170-
"X-Api-Key": "CREATEOS_API_KEY"
171-
}
172-
}
173-
},
174-
"inputs": []
175-
}
176-
```
177-
178-
**Setup:** Settings → Cascade → MCP Servers → Open Marketplace → settings icon → paste config → save → verify connection.
179-
180-
<details>
181-
<summary>📖 Full Windsurf docs</summary>
182-
183-
See the [Windsurf integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Windsurf) for screenshots and video walkthrough.
184-
</details>
185-
186-
---
187-
188-
### Gemini CLI
189-
190-
Add to `.gemini/settings.json` in your project root:
191-
192-
```json
193-
{
194-
"mcpServers": {
195-
"createos": {
196-
"url": "https://api-createos.nodeops.network/mcp",
197-
"headers": {
198-
"X-Api-Key": "CREATEOS_API_KEY"
199-
}
200-
}
201-
}
202-
}
203-
```
204-
205-
**Verify:**
206-
207-
```bash
208-
gemini mcp list
209-
# ✓ user-autogen connected
210-
```
211-
212-
<details>
213-
<summary>📖 Full Gemini CLI docs</summary>
214-
215-
See the [Gemini CLI integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Gemini-CLI) for the complete walkthrough.
216-
</details>
217-
218-
---
219-
220-
### Gemini Code Assist
221-
222-
Uses the same configuration as Gemini CLI. Add to `.gemini/settings.json`:
223-
224-
```json
225-
{
226-
"mcpServers": {
227-
"createos": {
228-
"url": "https://api-createos.nodeops.network/mcp",
229-
"headers": {
230-
"X-Api-Key": "CREATEOS_API_KEY"
231-
}
232-
}
233-
}
234-
}
235-
```
236-
237-
<details>
238-
<summary>📖 Full Gemini Code Assist docs</summary>
239-
240-
See the [Gemini Code Assist integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Gemini-Code-Assist) for the complete walkthrough.
241-
</details>
242-
243-
---
244-
245-
### Opencode
246-
247-
Create `opencode.json` in your project root:
248-
249-
```json
250-
{
251-
"$schema": "https://opencode.ai/config.json",
252-
"mcp": {
253-
"createos": {
254-
"type": "remote",
255-
"url": "https://api-createos.nodeops.network/mcp",
256-
"headers": {
257-
"X-Api-Key": "CREATEOS_API_KEY"
258-
}
259-
}
260-
}
261-
}
262-
```
263-
264-
**Setup:** Create config → save → restart Opencode Desktop → verify MCP connection indicator.
265-
266-
<details>
267-
<summary>📖 Full Opencode docs</summary>
268-
269-
See the [Opencode integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Opencode) for the complete walkthrough.
270-
</details>
271-
272-
---
273-
274-
### Zapier
275-
276-
1. Navigate to **App Connections** in the Zapier web portal
277-
2. Click **Add Connection** → search for **"MCP Client by Zapier"**
278-
3. Configure:
279-
- **Server URL:** `https://api-createos.nodeops.network/mcp`
280-
- **Transport:** Streamable HTTP
281-
- **OAuth:** No
282-
- **Bearer Token:** Your CreateOS API key
283-
4. Save and test the connection
284-
285-
<details>
286-
<summary>📖 Full Zapier docs</summary>
287-
288-
See the [Zapier integration guide](https://nodeops.network/createos/docs/Integrations/Integration-Zapier) for screenshots and step-by-step instructions.
289-
</details>
290-
291-
---
292-
293-
### ElevenLabs
294-
295-
1. Open ElevenLabs integration settings
296-
2. Select **Custom MCP Server**
297-
3. Configure:
298-
- **Server Type:** Streamable HTTP
299-
- **URL:** `https://api-createos.nodeops.network/mcp`
300-
- **HTTP Header Name:** `X-API-Key`
301-
- **HTTP Header Value:** Your CreateOS API key
302-
4. Check the trust confirmation checkbox and save
303-
304-
<details>
305-
<summary>📖 Full ElevenLabs docs</summary>
306-
307-
See the [ElevenLabs integration guide](https://nodeops.network/createos/docs/Integrations/Integration-ElevenLabs) for screenshots and step-by-step instructions.
308-
</details>
309-
310-
---
311-
31252
## Usage Examples
31353

31454
Once connected, interact with CreateOS through natural language in your AI assistant:
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
title: Antigravity
3+
order: 10
4+
---
5+
# CreateOS MCP Integration with Antigravity
6+
7+
## Overview
8+
9+
Integrate CreateOS with Antigravity using the MCP (Model Context Protocol) to enable AI-powered deployment workflows directly from the Antigravity agent interface.
10+
11+
## Prerequisites
12+
13+
- Antigravity application installed
14+
- CreateOS account with API key access
15+
16+
## Setup Instructions
17+
18+
### Step 1: Access MCP Server Settings
19+
20+
1. Open the **Agent chat window** in Antigravity
21+
2. Click on the **"…"** menu in the top right corner
22+
3. Select **MCP Servers** from the dropdown list
23+
24+
![Antigravity1](https://ik.imagekit.io/nodeops/Docs%20Images/Antigravity/1.png?updatedAt=1769668524785)
25+
26+
### Step 2: Open Configuration File
27+
28+
1. Click on **"Manage MCP Servers"**
29+
30+
![Antigravity2](https://ik.imagekit.io/nodeops/Docs%20Images/Antigravity/2.png?updatedAt=1769668524890)
31+
32+
2. In the menu that opens, click **"View raw config"**
33+
34+
![Antigravity3](https://ik.imagekit.io/nodeops/Docs%20Images/Antigravity/3.png?updatedAt=1769668524710)
35+
36+
3. This will open the `mcp_config.json` file
37+
38+
### Step 3: Configure CreateOS MCP
39+
40+
Paste the following configuration into `mcp_config.json`, replacing `CREATEOS_API_KEY` with your actual API key:
41+
42+
```json
43+
{
44+
"mcpServers": {
45+
"createos": {
46+
"serverUrl": "https://api-createos.nodeops.network/mcp",
47+
"headers": {
48+
"X-Api-Key": "CREATEOS_API_KEY"
49+
}
50+
}
51+
},
52+
"inputs": []
53+
}
54+
```
55+
56+
**Getting Your API Key:**
57+
58+
1. Log in to CreateOS
59+
2. Navigate to **Profile Settings**
60+
3. Copy your API key from the **API Key** section
61+
62+
<br/>
63+
64+
<a href="https://ik.imagekit.io/nodeops/No%20Sound/API%20Key%20Retrieval.mp4" target="_blank">Watch Tutorial →</a>
65+
66+
<MDXVideo
67+
src="https://ik.imagekit.io/nodeops/No%20Sound/API%20Key%20Retrieval.mp4"
68+
caption="API key retrieval tutorial"
69+
/>
70+
71+
**Security Note**: Keep your API key confidential and never share it publicly.
72+
73+
### Step 4: Apply Configuration
74+
75+
1. Save the `mcp_config.json` file
76+
2. Restart the Antigravity application completely
77+
78+
## Verification
79+
80+
After restarting, Antigravity will automatically connect to the CreateOS MCP server. You can verify the connection by asking the agent to list your CreateOS projects or perform a deployment action.
81+
82+
## Usage
83+
84+
Once configured, simply tell the Antigravity agent what you want to deploy through CreateOS, and it will handle the integration automatically.

0 commit comments

Comments
 (0)