You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/de/copilot/index.mdx
-95Lines changed: 0 additions & 95 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -246,98 +246,3 @@ Die Copilot-Nutzung wird pro Token des zugrunde liegenden LLM abgerechnet. Wenn
246
246
<Callouttype="info">
247
247
Siehe die [Seite zur Kostenberechnung](/execution/costs) für Abrechnungsdetails.
248
248
</Callout>
249
-
## Copilot MCP
250
-
251
-
Sie können Copilot als MCP-Server in Ihrem bevorzugten Editor oder AI-Client verwenden. Damit können Sie Sim-Workflows direkt aus Tools wie Cursor, Claude Code, Claude Desktop und VS Code erstellen, testen, bereitstellen und verwalten.
252
-
253
-
### Generieren eines Copilot-API-Schlüssels
254
-
255
-
Um sich mit dem Copilot-MCP-Server zu verbinden, benötigen Sie einen **Copilot-API-Schlüssel**:
256
-
257
-
1. Gehen Sie zu [sim.ai](https://sim.ai) und melden Sie sich an
258
-
2. Navigieren Sie zu **Einstellungen** → **Copilot**
259
-
3. Klicken Sie auf **API-Schlüssel generieren**
260
-
4. Kopieren Sie den Schlüssel – er wird nur einmal angezeigt
261
-
262
-
Der Schlüssel sieht aus wie `sk-sim-copilot-...`. Sie werden ihn in der folgenden Konfiguration verwenden.
263
-
264
-
### Cursor
265
-
266
-
Fügen Sie Folgendes zu Ihrer `.cursor/mcp.json` (Projektebene) oder den globalen Cursor-MCP-Einstellungen hinzu:
267
-
268
-
```json
269
-
{
270
-
"mcpServers": {
271
-
"sim-copilot": {
272
-
"url": "https://www.sim.ai/api/mcp/copilot",
273
-
"headers": {
274
-
"X-API-Key": "YOUR_COPILOT_API_KEY"
275
-
}
276
-
}
277
-
}
278
-
}
279
-
```
280
-
281
-
Ersetzen Sie `YOUR_COPILOT_API_KEY` durch den oben generierten Schlüssel.
282
-
283
-
### Claude Code
284
-
285
-
Führen Sie den folgenden Befehl aus, um den Copilot MCP-Server hinzuzufügen:
286
-
287
-
```bash
288
-
claude mcp add sim-copilot \
289
-
--transport http \
290
-
https://www.sim.ai/api/mcp/copilot \
291
-
--header "X-API-Key: YOUR_COPILOT_API_KEY"
292
-
```
293
-
294
-
Ersetzen Sie `YOUR_COPILOT_API_KEY` durch Ihren Schlüssel.
295
-
296
-
### Claude Desktop
297
-
298
-
Claude Desktop benötigt [`mcp-remote`](https://www.npmjs.com/package/mcp-remote), um sich mit HTTP-basierten MCP-Servern zu verbinden. Fügen Sie Folgendes zu Ihrer Claude Desktop-Konfigurationsdatei hinzu (`~/Library/Application Support/Claude/claude_desktop_config.json` unter macOS):
299
-
300
-
```json
301
-
{
302
-
"mcpServers": {
303
-
"sim-copilot": {
304
-
"command": "npx",
305
-
"args": [
306
-
"-y",
307
-
"mcp-remote",
308
-
"https://www.sim.ai/api/mcp/copilot",
309
-
"--header",
310
-
"X-API-Key: YOUR_COPILOT_API_KEY"
311
-
]
312
-
}
313
-
}
314
-
}
315
-
```
316
-
317
-
Ersetzen Sie `YOUR_COPILOT_API_KEY` durch Ihren Schlüssel.
318
-
319
-
### VS Code
320
-
321
-
Fügen Sie Folgendes zu Ihrer VS Code `settings.json` oder Workspace `.vscode/settings.json` hinzu:
322
-
323
-
```json
324
-
{
325
-
"mcp": {
326
-
"servers": {
327
-
"sim-copilot": {
328
-
"type": "http",
329
-
"url": "https://www.sim.ai/api/mcp/copilot",
330
-
"headers": {
331
-
"X-API-Key": "YOUR_COPILOT_API_KEY"
332
-
}
333
-
}
334
-
}
335
-
}
336
-
}
337
-
```
338
-
339
-
Ersetzen Sie `YOUR_COPILOT_API_KEY` durch Ihren Schlüssel.
340
-
341
-
<Callouttype="info">
342
-
Für selbst gehostete Deployments ersetzen Sie `https://www.sim.ai` durch Ihre selbst gehostete Sim-URL.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/copilot/index.mdx
-84Lines changed: 0 additions & 84 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,90 +50,6 @@ For complex requests, Copilot may show its reasoning in an expandable thinking b
50
50
51
51
Copilot usage is billed per token and counts toward your plan's credit usage. If you reach your limit, enable on-demand billing from Settings → Subscription.
52
52
53
-
## Copilot MCP
54
-
55
-
You can use Copilot as an MCP server to build, test, and manage Sim workflows from external editors — Cursor, Claude Code, Claude Desktop, and VS Code.
56
-
57
-
### Generating a Copilot API Key
58
-
59
-
1. Go to [sim.ai](https://sim.ai) and sign in
60
-
2. Navigate to **Settings** → **Copilot**
61
-
3. Click **Generate API Key**
62
-
4. Copy the key — it is only shown once
63
-
64
-
The key will look like `sk-sim-copilot-...`.
65
-
66
-
### Cursor
67
-
68
-
Add to `.cursor/mcp.json`:
69
-
70
-
```json
71
-
{
72
-
"mcpServers": {
73
-
"sim-copilot": {
74
-
"url": "https://www.sim.ai/api/mcp/copilot",
75
-
"headers": {
76
-
"X-API-Key": "YOUR_COPILOT_API_KEY"
77
-
}
78
-
}
79
-
}
80
-
}
81
-
```
82
-
83
-
### Claude Code
84
-
85
-
```bash
86
-
claude mcp add sim-copilot \
87
-
--transport http \
88
-
https://www.sim.ai/api/mcp/copilot \
89
-
--header "X-API-Key: YOUR_COPILOT_API_KEY"
90
-
```
91
-
92
-
### Claude Desktop
93
-
94
-
Claude Desktop requires [`mcp-remote`](https://www.npmjs.com/package/mcp-remote). Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
95
-
96
-
```json
97
-
{
98
-
"mcpServers": {
99
-
"sim-copilot": {
100
-
"command": "npx",
101
-
"args": [
102
-
"-y",
103
-
"mcp-remote",
104
-
"https://www.sim.ai/api/mcp/copilot",
105
-
"--header",
106
-
"X-API-Key: YOUR_COPILOT_API_KEY"
107
-
]
108
-
}
109
-
}
110
-
}
111
-
```
112
-
113
-
### VS Code
114
-
115
-
Add to `settings.json` or `.vscode/settings.json`:
116
-
117
-
```json
118
-
{
119
-
"mcp": {
120
-
"servers": {
121
-
"sim-copilot": {
122
-
"type": "http",
123
-
"url": "https://www.sim.ai/api/mcp/copilot",
124
-
"headers": {
125
-
"X-API-Key": "YOUR_COPILOT_API_KEY"
126
-
}
127
-
}
128
-
}
129
-
}
130
-
}
131
-
```
132
-
133
-
<Callouttype="info">
134
-
For self-hosted deployments, replace `https://www.sim.ai` with your self-hosted Sim URL.
135
-
</Callout>
136
-
137
53
<FAQitems={[
138
54
{ question: "How is Copilot different from Mothership?", answer: "Copilot is scoped to the workflow you have open — it reads and edits that workflow's blocks and connections. Mothership has access to your entire workspace and can build workflows, manage tables, run research, schedule jobs, and take actions across integrations." },
139
55
{ question: "Can Copilot access other workflows or workspace data?", answer: "Copilot is scoped to the current workflow. For tasks that span multiple workflows or require workspace-level context, use Mothership." },
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/tools/apollo.mdx
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,7 @@ Update an existing contact in your Apollo database
252
252
|`mobile_phone`| string | No | Mobile phone number |
253
253
|`home_phone`| string | No | Home phone number |
254
254
|`other_phone`| string | No | Alternative phone number |
255
-
|`typed_custom_fields`| json | No | Custom field values keyed by custom field ID \(accepted by Apollo but not officially documented for PATCH /contacts/\{id\}\)|
255
+
|`typed_custom_fields`| json | No | Custom field values keyed by custom field ID |
256
256
257
257
#### Output
258
258
@@ -440,16 +440,17 @@ Update up to 1000 existing accounts at once in your Apollo database (higher limi
440
440
|`account_ids`| array | No | Array of account IDs to update with the same values \(max 1000\). Use with name/owner_id for uniform updates. Use either this OR account_attributes. |
441
441
|`name`| string | No | When using account_ids, apply this name to all accounts |
442
442
|`owner_id`| string | No | When using account_ids, apply this owner to all accounts |
443
+
|`account_stage_id`| string | No | When using account_ids, apply this account stage to all accounts |
443
444
|`account_attributes`| json | No | Array of account objects with individual updates \(each must include id\). Example: \[\{"id": "acc1", "name": "Acme", "owner_id": "u1", "account_stage_id": "s1", "typed_custom_fields": \{"field_id": "value"\}\}\]|
444
445
|`async`| boolean | No | When true, processes the update asynchronously. Only supported when using account_ids; returns 422 if used with account_attributes. |
|`matchCompanyInput`| string | Yes | JSON array \(1-25 items\) of company matching criteria, e.g. \[\{"companyName":"Acme","companyWebsite":"acme.com"\}\]|
122
-
|`outputFields`| string | No | JSON array or comma-separated list of fields to return \(e.g. \["id","name","website","revenue","employeeCount"\]\)|
122
+
|`outputFields`| string | No | JSON array or comma-separated list of fields to return \(e.g. \["id","name","website","revenue","employeeCount"\]\). Defaults to a standard firmographic set if omitted.|
123
123
124
124
#### Output
125
125
@@ -138,7 +138,7 @@ Enrich up to 25 contacts in one request with verified emails, phone numbers, job
138
138
|`clientId`| string | Yes | ZoomInfo OAuth client ID |
|`matchPersonInput`| string | Yes | JSON array \(1-25 items\) of contact matching criteria, e.g. \[\{"firstName":"Jane","lastName":"Doe","companyName":"Acme"\}\]|
141
-
|`outputFields`| string | No | JSON array or comma-separated list of fields to return \(e.g. \["id","firstName","email","phone","jobTitle"\]\)|
141
+
|`outputFields`| string | No | JSON array or comma-separated list of fields to return \(e.g. \["id","firstName","email","phone","jobTitle"\]\). Defaults to a standard contact set if omitted.|
142
142
|`requiredFields`| string | No | JSON array or comma-separated list of fields that must exist in results \(e.g. \["email"\]\)|
0 commit comments