Skip to content

Commit ca2150c

Browse files
committed
chore(copilot): deprecate mcp
1 parent 4967305 commit ca2150c

14 files changed

Lines changed: 119 additions & 1315 deletions

File tree

apps/docs/content/docs/de/copilot/index.mdx

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -246,98 +246,3 @@ Die Copilot-Nutzung wird pro Token des zugrunde liegenden LLM abgerechnet. Wenn
246246
<Callout type="info">
247247
Siehe die [Seite zur Kostenberechnung](/execution/costs) für Abrechnungsdetails.
248248
</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-
<Callout type="info">
342-
Für selbst gehostete Deployments ersetzen Sie `https://www.sim.ai` durch Ihre selbst gehostete Sim-URL.
343-
</Callout>

apps/docs/content/docs/en/copilot/index.mdx

Lines changed: 0 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -50,90 +50,6 @@ For complex requests, Copilot may show its reasoning in an expandable thinking b
5050

5151
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.
5252

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-
<Callout type="info">
134-
For self-hosted deployments, replace `https://www.sim.ai` with your self-hosted Sim URL.
135-
</Callout>
136-
13753
<FAQ items={[
13854
{ 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." },
13955
{ 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." },

apps/docs/content/docs/es/copilot/index.mdx

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -246,98 +246,3 @@ El uso de Copilot se factura por token del LLM subyacente. Si alcanzas tu límit
246246
<Callout type="info">
247247
Consulta la [página de cálculo de costos](/execution/costs) para detalles de facturación.
248248
</Callout>
249-
## Copilot MCP
250-
251-
Puedes usar Copilot como servidor MCP en tu editor o cliente de IA favorito. Esto te permite construir, probar, desplegar y gestionar flujos de trabajo de Sim directamente desde herramientas como Cursor, Claude Code, Claude Desktop y VS Code.
252-
253-
### Generar una clave API de Copilot
254-
255-
Para conectarte al servidor MCP de Copilot, necesitas una **clave API de Copilot**:
256-
257-
1. Ve a [sim.ai](https://sim.ai) e inicia sesión
258-
2. Navega a **Configuración****Copilot**
259-
3. Haz clic en **Generar clave API**
260-
4. Copia la clave — solo se muestra una vez
261-
262-
La clave se verá como `sk-sim-copilot-...`. Usarás esto en la configuración a continuación.
263-
264-
### Cursor
265-
266-
Agrega lo siguiente a tu `.cursor/mcp.json` (nivel de proyecto) o configuración global de MCP de Cursor:
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-
Reemplaza `YOUR_COPILOT_API_KEY` con la clave que generaste anteriormente.
282-
283-
### Claude Code
284-
285-
Ejecuta el siguiente comando para añadir el servidor MCP de Copilot:
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-
Reemplaza `YOUR_COPILOT_API_KEY` con tu clave.
295-
296-
### Claude Desktop
297-
298-
Claude Desktop requiere [`mcp-remote`](https://www.npmjs.com/package/mcp-remote) para conectarse a servidores MCP basados en HTTP. Añade lo siguiente a tu archivo de configuración de Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_config.json` en 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-
Reemplaza `YOUR_COPILOT_API_KEY` con tu clave.
318-
319-
### VS Code
320-
321-
Añade lo siguiente a tu `settings.json` de VS Code o al `.vscode/settings.json` del espacio de trabajo:
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-
Reemplaza `YOUR_COPILOT_API_KEY` con tu clave.
340-
341-
<Callout type="info">
342-
Para implementaciones auto-alojadas, reemplaza `https://www.sim.ai` con tu URL de Sim auto-alojada.
343-
</Callout>

apps/docs/content/docs/fr/copilot/index.mdx

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -246,98 +246,3 @@ L'utilisation de Copilot est facturée par jeton du LLM sous-jacent. Si vous att
246246
<Callout type="info">
247247
Consultez la [page de calcul des coûts](/execution/costs) pour les détails de facturation.
248248
</Callout>
249-
## Copilot MCP
250-
251-
Vous pouvez utiliser Copilot comme serveur MCP dans votre éditeur ou client IA préféré. Cela vous permet de créer, tester, déployer et gérer des workflows Sim directement depuis des outils comme Cursor, Claude Code, Claude Desktop et VS Code.
252-
253-
### Générer une clé API Copilot
254-
255-
Pour vous connecter au serveur MCP Copilot, vous avez besoin d'une **clé API Copilot** :
256-
257-
1. Rendez-vous sur [sim.ai](https://sim.ai) et connectez-vous
258-
2. Accédez à **Paramètres****Copilot**
259-
3. Cliquez sur **Générer une clé API**
260-
4. Copiez la clé — elle n'est affichée qu'une seule fois
261-
262-
La clé ressemblera à `sk-sim-copilot-...`. Vous l'utiliserez dans la configuration ci-dessous.
263-
264-
### Cursor
265-
266-
Ajoutez ce qui suit à votre `.cursor/mcp.json` (niveau projet) ou aux paramètres MCP globaux de Cursor :
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-
Remplacez `YOUR_COPILOT_API_KEY` par la clé que vous avez générée ci-dessus.
282-
283-
### Claude Code
284-
285-
Exécutez la commande suivante pour ajouter le serveur MCP Copilot :
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-
Remplacez `YOUR_COPILOT_API_KEY` par votre clé.
295-
296-
### Claude Desktop
297-
298-
Claude Desktop nécessite [`mcp-remote`](https://www.npmjs.com/package/mcp-remote) pour se connecter aux serveurs MCP basés sur HTTP. Ajoutez ce qui suit à votre fichier de configuration Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_config.json` sur 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-
Remplacez `YOUR_COPILOT_API_KEY` par votre clé.
318-
319-
### VS Code
320-
321-
Ajoutez ce qui suit à votre `settings.json` VS Code ou à votre `.vscode/settings.json` d'espace de travail :
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-
Remplacez `YOUR_COPILOT_API_KEY` par votre clé.
340-
341-
<Callout type="info">
342-
Pour les déploiements auto-hébergés, remplacez `https://www.sim.ai` par votre URL Sim auto-hébergée.
343-
</Callout>

0 commit comments

Comments
 (0)