feat(i18n): update translations (#2246)

Co-authored-by: icecrasher321 <icecrasher321@users.noreply.github.com>
This commit is contained in:
Waleed
2025-12-08 10:45:48 -08:00
committed by GitHub
parent 01b2f809d1
commit 598c3bc684
11 changed files with 1702 additions and 2 deletions

View File

@@ -0,0 +1,160 @@
---
title: Cursor
description: Starten und verwalten Sie Cursor Cloud-Agenten zur Arbeit an
GitHub-Repositories
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="cursor"
color="#1E1E1E"
/>
## Nutzungsanleitung
Interagieren Sie mit der Cursor Cloud Agents API, um KI-Agenten zu starten, die an Ihren GitHub-Repositories arbeiten können. Unterstützt das Starten von Agenten, Hinzufügen von Folgeanweisungen, Überprüfen des Status, Anzeigen von Konversationen und Verwalten des Agenten-Lebenszyklus.
## Tools
### `cursor_list_agents`
Listet alle Cloud-Agenten für den authentifizierten Benutzer mit optionaler Paginierung auf.
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `limit` | number | Nein | Anzahl der zurückzugebenden Agenten \(Standard: 20, max: 100\) |
| `cursor` | string | Nein | Paginierungscursor aus vorheriger Antwort |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Menschenlesbare Liste von Agenten |
| `metadata` | object | Metadaten der Agentenliste |
### `cursor_get_agent`
Ruft den aktuellen Status und die Ergebnisse eines Cloud-Agenten ab.
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `agentId` | string | Ja | Eindeutige Kennung für den Cloud-Agenten \(z.B. bc_abc123\) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Menschenlesbare Agentendetails |
| `metadata` | object | Agenten-Metadaten |
### `cursor_get_conversation`
Rufe den Gesprächsverlauf eines Cloud-Agenten ab, einschließlich aller Benutzeranfragen und Antworten des Assistenten.
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `agentId` | string | Ja | Eindeutige Kennung für den Cloud-Agenten \(z.B. bc_abc123\) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Menschenlesbarer Gesprächsverlauf |
| `metadata` | object | Gesprächsmetadaten |
### `cursor_launch_agent`
Starte einen neuen Cloud-Agenten, um an einem GitHub-Repository mit den angegebenen Anweisungen zu arbeiten.
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `repository` | string | Ja | GitHub-Repository-URL \(z.B. https://github.com/your-org/your-repo\) |
| `ref` | string | Nein | Branch, Tag oder Commit, von dem aus gearbeitet werden soll \(standardmäßig der Hauptbranch\) |
| `promptText` | string | Ja | Der Anweisungstext für den Agenten |
| `promptImages` | string | Nein | JSON-Array von Bildobjekten mit Base64-Daten und Abmessungen |
| `model` | string | Nein | Zu verwendendes Modell \(leer lassen für automatische Auswahl\) |
| `branchName` | string | Nein | Benutzerdefinierter Branch-Name für den Agenten |
| `autoCreatePr` | boolean | Nein | Automatisches Erstellen eines PR, wenn der Agent fertig ist |
| `openAsCursorGithubApp` | boolean | Nein | Öffnen des PR als Cursor GitHub App |
| `skipReviewerRequest` | boolean | Nein | Überspringen der Anfrage nach Prüfern für den PR |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Erfolgsmeldung mit Agenten-Details |
| `metadata` | object | Metadaten zum Startergebnis |
### `cursor_add_followup`
Füge eine Folgeanweisung zu einem bestehenden Cloud-Agenten hinzu.
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `agentId` | string | Ja | Eindeutige Kennung für den Cloud-Agenten \(z.B. bc_abc123\) |
| `promptText` | string | Ja | Der Text der Folgeanweisung für den Agenten |
| `promptImages` | string | Nein | JSON-Array von Bildobjekten mit Base64-Daten und Abmessungen \(max. 5\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Erfolgsmeldung |
| `metadata` | object | Ergebnis-Metadaten |
### `cursor_stop_agent`
Stoppe einen laufenden Cloud-Agenten. Dies pausiert den Agenten, ohne ihn zu löschen.
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `agentId` | string | Ja | Eindeutige Kennung für den Cloud-Agenten \(z.B. bc_abc123\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Erfolgsmeldung |
| `metadata` | object | Ergebnis-Metadaten |
### `cursor_delete_agent`
Löschen Sie einen Cloud-Agenten dauerhaft. Diese Aktion kann nicht rückgängig gemacht werden.
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Cursor API-Schlüssel |
| `agentId` | string | Ja | Eindeutige Kennung für den Cloud-Agenten \(z.B. bc_abc123\) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `content` | string | Erfolgsmeldung |
| `metadata` | object | Ergebnis-Metadaten |
## Hinweise
- Kategorie: `tools`
- Typ: `cursor`

View File

@@ -413,6 +413,165 @@ Löschen eines Kontos aus Salesforce CRM
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_list_reports`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_get_report`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_run_report`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_list_report_types`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_list_dashboards`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_get_dashboard`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_refresh_dashboard`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_query`
Führt eine benutzerdefinierte SOQL-Abfrage aus, um Daten von Salesforce abzurufen
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `idToken` | string | Nein | Keine Beschreibung |
| `instanceUrl` | string | Nein | Keine Beschreibung |
| `query` | string | Ja | Auszuführende SOQL-Abfrage \(z.B. SELECT Id, Name FROM Account LIMIT 10\) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Erfolgsstatus |
| `output` | object | Abfrageergebnisse |
### `salesforce_query_more`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_describe_object`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
### `salesforce_list_objects`
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Status des Operationserfolgs |
| `output` | json | Ergebnisdaten der Operation |
## Hinweise
- Kategorie: `tools`

View File

@@ -0,0 +1,160 @@
---
title: Cursor
description: Lanza y gestiona agentes en la nube de Cursor para trabajar en
repositorios de GitHub
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="cursor"
color="#1E1E1E"
/>
## Instrucciones de uso
Interactúa con la API de Agentes en la Nube de Cursor para lanzar agentes de IA que pueden trabajar en tus repositorios de GitHub. Permite lanzar agentes, añadir instrucciones de seguimiento, verificar el estado, ver conversaciones y gestionar el ciclo de vida del agente.
## Herramientas
### `cursor_list_agents`
Lista todos los agentes en la nube para el usuario autenticado con paginación opcional.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | ----------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `limit` | number | No | Número de agentes a devolver \(predeterminado: 20, máximo: 100\) |
| `cursor` | string | No | Cursor de paginación de la respuesta anterior |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Lista legible de agentes |
| `metadata` | object | Metadatos de la lista de agentes |
### `cursor_get_agent`
Recupera el estado actual y los resultados de un agente en la nube.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | ----------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `agentId` | string | Sí | Identificador único para el agente en la nube \(p. ej., bc_abc123\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Detalles del agente en formato legible |
| `metadata` | object | Metadatos del agente |
### `cursor_get_conversation`
Recupera el historial de conversación de un agente en la nube, incluyendo todas las solicitudes del usuario y respuestas del asistente.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `agentId` | string | Sí | Identificador único para el agente en la nube \(p. ej., bc_abc123\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Historial de conversación legible para humanos |
| `metadata` | object | Metadatos de la conversación |
### `cursor_launch_agent`
Inicia un nuevo agente en la nube para trabajar en un repositorio de GitHub con las instrucciones dadas.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `repository` | string | Sí | URL del repositorio de GitHub \(p. ej., https://github.com/your-org/your-repo\) |
| `ref` | string | No | Rama, etiqueta o commit desde el que trabajar \(por defecto, la rama principal\) |
| `promptText` | string | Sí | El texto de instrucciones para el agente |
| `promptImages` | string | No | Array JSON de objetos de imagen con datos en base64 y dimensiones |
| `model` | string | No | Modelo a utilizar \(dejar vacío para selección automática\) |
| `branchName` | string | No | Nombre de rama personalizado para que el agente lo use |
| `autoCreatePr` | boolean | No | Crear automáticamente un PR cuando el agente termine |
| `openAsCursorGithubApp` | boolean | No | Abrir el PR como la aplicación de GitHub de Cursor |
| `skipReviewerRequest` | boolean | No | Omitir la solicitud de revisores en el PR |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Mensaje de éxito con detalles del agente |
| `metadata` | object | Metadatos del resultado de lanzamiento |
### `cursor_add_followup`
Añadir una instrucción de seguimiento a un agente en la nube existente.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `agentId` | string | Sí | Identificador único para el agente en la nube \(p. ej., bc_abc123\) |
| `promptText` | string | Sí | El texto de instrucción de seguimiento para el agente |
| `promptImages` | string | No | Array JSON de objetos de imagen con datos base64 y dimensiones \(máximo 5\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Mensaje de éxito |
| `metadata` | object | Metadatos del resultado |
### `cursor_stop_agent`
Detener un agente en la nube en ejecución. Esto pausa el agente sin eliminarlo.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `agentId` | string | Sí | Identificador único para el agente en la nube \(p. ej., bc_abc123\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Mensaje de éxito |
| `metadata` | object | Metadatos del resultado |
### `cursor_delete_agent`
Eliminar permanentemente un agente en la nube. Esta acción no se puede deshacer.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Cursor |
| `agentId` | string | Sí | Identificador único para el agente en la nube \(p. ej., bc_abc123\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `content` | string | Mensaje de éxito |
| `metadata` | object | Metadatos del resultado |
## Notas
- Categoría: `tools`
- Tipo: `cursor`

View File

@@ -413,6 +413,165 @@ Eliminar una cuenta de Salesforce CRM
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_list_reports`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_get_report`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_run_report`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_list_report_types`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_list_dashboards`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_get_dashboard`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_refresh_dashboard`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_query`
Ejecuta una consulta SOQL personalizada para recuperar datos de Salesforce
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `idToken` | string | No | Sin descripción |
| `instanceUrl` | string | No | Sin descripción |
| `query` | string | Sí | Consulta SOQL a ejecutar \(p. ej., SELECT Id, Name FROM Account LIMIT 10\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito |
| `output` | object | Resultados de la consulta |
### `salesforce_query_more`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_describe_object`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
### `salesforce_list_objects`
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Datos del resultado de la operación |
## Notas
- Categoría: `tools`

View File

@@ -0,0 +1,159 @@
---
title: Cursor
description: Lancez et gérez des agents cloud Cursor pour travailler sur des dépôts GitHub
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="cursor"
color="#1E1E1E"
/>
## Instructions d'utilisation
Interagissez avec l'API des agents cloud Cursor pour lancer des agents IA qui peuvent travailler sur vos dépôts GitHub. Prend en charge le lancement d'agents, l'ajout d'instructions complémentaires, la vérification du statut, la visualisation des conversations et la gestion du cycle de vie des agents.
## Outils
### `cursor_list_agents`
Liste tous les agents cloud pour l'utilisateur authentifié avec pagination optionnelle.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Cursor |
| `limit` | number | Non | Nombre d'agents à retourner \(par défaut : 20, max : 100\) |
| `cursor` | string | Non | Curseur de pagination de la réponse précédente |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Liste des agents lisible par l'humain |
| `metadata` | object | Métadonnées de la liste d'agents |
### `cursor_get_agent`
Récupère le statut actuel et les résultats d'un agent cloud.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Cursor |
| `agentId` | string | Oui | Identifiant unique pour l'agent cloud \(ex. : bc_abc123\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Détails de l'agent lisibles par l'humain |
| `metadata` | object | Métadonnées de l'agent |
### `cursor_get_conversation`
Récupérez l'historique de conversation d'un agent cloud, y compris toutes les requêtes utilisateur et les réponses de l'assistant.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | chaîne | Oui | Clé API Cursor |
| `agentId` | chaîne | Oui | Identifiant unique pour l'agent cloud \(ex. : bc_abc123\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | chaîne | Historique de conversation lisible par l'humain |
| `metadata` | objet | Métadonnées de conversation |
### `cursor_launch_agent`
Démarrez un nouvel agent cloud pour travailler sur un dépôt GitHub avec les instructions données.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | chaîne | Oui | Clé API Cursor |
| `repository` | chaîne | Oui | URL du dépôt GitHub \(ex. : https://github.com/your-org/your-repo\) |
| `ref` | chaîne | Non | Branche, tag ou commit à partir duquel travailler \(par défaut : branche principale\) |
| `promptText` | chaîne | Oui | Le texte d'instruction pour l'agent |
| `promptImages` | chaîne | Non | Tableau JSON d'objets image avec données base64 et dimensions |
| `model` | chaîne | Non | Modèle à utiliser \(laisser vide pour sélection automatique\) |
| `branchName` | chaîne | Non | Nom de branche personnalisé pour l'agent |
| `autoCreatePr` | booléen | Non | Créer automatiquement une PR lorsque l'agent termine |
| `openAsCursorGithubApp` | booléen | Non | Ouvrir la PR en tant qu'application GitHub Cursor |
| `skipReviewerRequest` | booléen | Non | Ignorer la demande de relecteurs sur la PR |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Message de succès avec les détails de l'agent |
| `metadata` | object | Métadonnées du résultat de lancement |
### `cursor_add_followup`
Ajouter une instruction de suivi à un agent cloud existant.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Cursor |
| `agentId` | string | Oui | Identifiant unique pour l'agent cloud \(ex., bc_abc123\) |
| `promptText` | string | Oui | Texte d'instruction de suivi pour l'agent |
| `promptImages` | string | Non | Tableau JSON d'objets d'images avec données base64 et dimensions \(max 5\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Message de succès |
| `metadata` | object | Métadonnées du résultat |
### `cursor_stop_agent`
Arrêter un agent cloud en cours d'exécution. Cela met l'agent en pause sans le supprimer.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Cursor |
| `agentId` | string | Oui | Identifiant unique pour l'agent cloud \(ex., bc_abc123\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | string | Message de succès |
| `metadata` | object | Métadonnées du résultat |
### `cursor_delete_agent`
Supprimer définitivement un agent cloud. Cette action ne peut pas être annulée.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | chaîne | Oui | Clé API Cursor |
| `agentId` | chaîne | Oui | Identifiant unique pour l'agent cloud \(ex., bc_abc123\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `content` | chaîne | Message de succès |
| `metadata` | objet | Métadonnées du résultat |
## Notes
- Catégorie : `tools`
- Type : `cursor`

View File

@@ -413,6 +413,165 @@ Supprimer un compte de Salesforce CRM
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_list_reports`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_get_report`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_run_report`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_list_report_types`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_list_dashboards`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_get_dashboard`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_refresh_dashboard`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_query`
Exécuter une requête SOQL personnalisée pour récupérer des données depuis Salesforce
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `idToken` | string | Non | Pas de description |
| `instanceUrl` | string | Non | Pas de description |
| `query` | string | Oui | Requête SOQL à exécuter \(ex. : SELECT Id, Name FROM Account LIMIT 10\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite |
| `output` | object | Résultats de la requête |
### `salesforce_query_more`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_describe_object`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
### `salesforce_list_objects`
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Données résultant de l'opération |
## Notes
- Catégorie : `tools`

View File

@@ -0,0 +1,159 @@
---
title: Cursor
description: GitHubリポジトリで作業するためのCursorクラウドエージェントを起動および管理する
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="cursor"
color="#1E1E1E"
/>
## 使用方法
Cursor Cloud Agents APIを使用して、GitHubリポジトリで作業できるAIエージェントを起動します。エージェントの起動、フォローアップ指示の追加、ステータスの確認、会話の表示、エージェントのライフサイクル管理をサポートします。
## ツール
### `cursor_list_agents`
認証されたユーザーのすべてのクラウドエージェントをオプションのページネーションで一覧表示します。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `limit` | number | いいえ | 返すエージェントの数デフォルト20、最大100 |
| `cursor` | string | いいえ | 前の応答からのページネーションカーソル |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 人間が読めるエージェントのリスト |
| `metadata` | object | エージェントリストのメタデータ |
### `cursor_get_agent`
クラウドエージェントの現在のステータスと結果を取得します。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `agentId` | string | はい | クラウドエージェントの一意の識別子bc_abc123 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 人間が読めるエージェントの詳細 |
| `metadata` | object | エージェントのメタデータ |
### `cursor_get_conversation`
クラウドエージェントの会話履歴を取得します。ユーザーのプロンプトとアシスタントの応答をすべて含みます。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `agentId` | string | はい | クラウドエージェントの一意の識別子bc_abc123 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 人間が読める会話履歴 |
| `metadata` | object | 会話のメタデータ |
### `cursor_launch_agent`
指定された指示でGitHubリポジトリに取り組む新しいクラウドエージェントを開始します。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `repository` | string | はい | GitHubリポジトリURLhttps://github.com/your-org/your-repo |
| `ref` | string | いいえ | 作業するブランチ、タグ、またはコミット(デフォルトブランチがデフォルト) |
| `promptText` | string | はい | エージェントへの指示テキスト |
| `promptImages` | string | いいえ | base64データと寸法を持つ画像オブジェクトのJSON配列 |
| `model` | string | いいえ | 使用するモデル(自動選択の場合は空のままにする) |
| `branchName` | string | いいえ | エージェントが使用するカスタムブランチ名 |
| `autoCreatePr` | boolean | いいえ | エージェントが終了したときに自動的にPRを作成する |
| `openAsCursorGithubApp` | boolean | いいえ | Cursor GitHub AppとしてPRを開く |
| `skipReviewerRequest` | boolean | いいえ | PRでのレビュアーのリクエストをスキップする |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | エージェントの詳細を含む成功メッセージ |
| `metadata` | object | 起動結果のメタデータ |
### `cursor_add_followup`
既存のクラウドエージェントにフォローアップ指示を追加します。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `agentId` | string | はい | クラウドエージェントの一意の識別子bc_abc123 |
| `promptText` | string | はい | エージェントへのフォローアップ指示テキスト |
| `promptImages` | string | いいえ | base64データと寸法を持つ画像オブジェクトのJSON配列最大5つ |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 成功メッセージ |
| `metadata` | object | 結果メタデータ |
### `cursor_stop_agent`
実行中のクラウドエージェントを停止します。これはエージェントを削除せずに一時停止します。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `agentId` | string | はい | クラウドエージェントの一意の識別子bc_abc123 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 成功メッセージ |
| `metadata` | object | 結果メタデータ |
### `cursor_delete_agent`
クラウドエージェントを完全に削除します。この操作は元に戻せません。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Cursor APIキー |
| `agentId` | string | はい | クラウドエージェントの一意の識別子bc_abc123 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `content` | string | 成功メッセージ |
| `metadata` | object | 結果メタデータ |
## 注意事項
- カテゴリー: `tools`
- タイプ: `cursor`

View File

@@ -413,6 +413,165 @@ Salesforce CRMからアカウントを削除する
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_list_reports`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_get_report`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_run_report`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_list_report_types`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_list_dashboards`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_get_dashboard`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_refresh_dashboard`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_query`
Salesforceからデータを取得するためのカスタムSOQLクエリを実行する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `idToken` | string | いいえ | 説明なし |
| `instanceUrl` | string | いいえ | 説明なし |
| `query` | string | はい | 実行するSOQLクエリSELECT Id, Name FROM Account LIMIT 10 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 成功ステータス |
| `output` | object | クエリ結果 |
### `salesforce_query_more`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_describe_object`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
### `salesforce_list_objects`
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功ステータス |
| `output` | json | 操作結果データ |
## 注意事項
- カテゴリー: `tools`

View File

@@ -0,0 +1,159 @@
---
title: Cursor
description: 启动并管理 Cursor 云代理以处理 GitHub 仓库
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="cursor"
color="#1E1E1E"
/>
## 使用说明
与 Cursor 云代理 API 交互,启动可以处理 GitHub 仓库的 AI 代理。支持启动代理、添加后续指令、检查状态、查看对话以及管理代理生命周期。
## 工具
### `cursor_list_agents`
列出经过身份验证的用户的所有云代理,并支持可选分页。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `limit` | number | 否 | 返回的代理数量 \(默认值: 20, 最大值: 100\) |
| `cursor` | string | 否 | 上一个响应的分页游标 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 可读的代理列表 |
| `metadata` | object | 代理列表元数据 |
### `cursor_get_agent`
检索云代理的当前状态和结果。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `agentId` | string | 是 | 云代理的唯一标识符 \(例如: bc_abc123\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 可读的代理详情 |
| `metadata` | object | 代理元数据 |
### `cursor_get_conversation`
检索云代理的对话历史,包括所有用户提示和助手回复。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `agentId` | string | 是 | 云代理的唯一标识符 \(例如bc_abc123\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 可读的对话历史 |
| `metadata` | object | 对话元数据 |
### `cursor_launch_agent`
启动一个新的云代理,根据给定的指令处理 GitHub 仓库。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `repository` | string | 是 | GitHub 仓库 URL \(例如https://github.com/your-org/your-repo\) |
| `ref` | string | 否 | 要处理的分支、标签或提交 \(默认为默认分支\) |
| `promptText` | string | 是 | 代理的指令文本 |
| `promptImages` | string | 否 | 包含 base64 数据和尺寸的图像对象的 JSON 数组 |
| `model` | string | 否 | 要使用的模型 \(留空以自动选择\) |
| `branchName` | string | 否 | 代理使用的自定义分支名称 |
| `autoCreatePr` | boolean | 否 | 代理完成后自动创建 PR |
| `openAsCursorGithubApp` | boolean | 否 | 以 Cursor GitHub App 的身份打开 PR |
| `skipReviewerRequest` | boolean | 否 | 跳过在 PR 上请求审阅者 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 包含代理详细信息的成功消息 |
| `metadata` | object | 启动结果的元数据 |
### `cursor_add_followup`
为现有的云代理添加后续指令。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `agentId` | string | 是 | 云代理的唯一标识符 \(例如bc_abc123\) |
| `promptText` | string | 是 | 代理的后续指令文本 |
| `promptImages` | string | 否 | 包含 base64 数据和尺寸的图像对象 JSON 数组 \(最多 5 个\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 成功消息 |
| `metadata` | object | 结果元数据 |
### `cursor_stop_agent`
停止正在运行的云代理。这会暂停代理但不会删除它。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `agentId` | string | 是 | 云代理的唯一标识符 \(例如bc_abc123\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 成功消息 |
| `metadata` | object | 结果元数据 |
### `cursor_delete_agent`
永久删除云代理。此操作无法撤销。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Cursor API 密钥 |
| `agentId` | string | 是 | 云代理的唯一标识符 \(例如bc_abc123\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `content` | string | 成功消息 |
| `metadata` | object | 结果元数据 |
## 注意
- 类别:`tools`
- 类型:`cursor`

View File

@@ -413,6 +413,165 @@ Salesforce 工具非常适合需要简化销售、账户管理、潜在客户生
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_list_reports`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_get_report`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_run_report`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_list_report_types`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_list_dashboards`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_get_dashboard`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_refresh_dashboard`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_query`
执行自定义 SOQL 查询以从 Salesforce 检索数据
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `idToken` | string | 否 | 无描述 |
| `instanceUrl` | string | 否 | 无描述 |
| `query` | string | 是 | 要执行的 SOQL 查询例如SELECT Id, Name FROM Account LIMIT 10 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 成功状态 |
| `output` | object | 查询结果 |
### `salesforce_query_more`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_describe_object`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
### `salesforce_list_objects`
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | 操作结果数据 |
## 注意事项
- 类别: `tools`

View File

@@ -6600,8 +6600,64 @@ checksums:
content/130: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/131: bcadfc362b69078beee0088e5936c98b
content/132: 4a2e706133d34b12b398b9ab2a895001
content/133: b3f310d5ef115bea5a8b75bf25d7ea9a
content/134: a575a9bbb6adc3614e075cfe43a9dad9
content/133: 754d4f8d75b844298aed2b79618d9129
content/134: 371d0e46b4bd2c23f559b8bc112f6955
content/135: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/136: bcadfc362b69078beee0088e5936c98b
content/137: 4a2e706133d34b12b398b9ab2a895001
content/138: 7f6a03dca71ef1eb9e156dfd4a1f77e1
content/139: 371d0e46b4bd2c23f559b8bc112f6955
content/140: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/141: bcadfc362b69078beee0088e5936c98b
content/142: 4a2e706133d34b12b398b9ab2a895001
content/143: 2bfd4048d729ab4db20cb54a37a07290
content/144: 371d0e46b4bd2c23f559b8bc112f6955
content/145: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/146: bcadfc362b69078beee0088e5936c98b
content/147: 4a2e706133d34b12b398b9ab2a895001
content/148: f1dafa02590e8218c18d95055eea9ea9
content/149: 371d0e46b4bd2c23f559b8bc112f6955
content/150: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/151: bcadfc362b69078beee0088e5936c98b
content/152: 4a2e706133d34b12b398b9ab2a895001
content/153: d3dabb641b05ca5eabc8f4d177dfc82e
content/154: 371d0e46b4bd2c23f559b8bc112f6955
content/155: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/156: bcadfc362b69078beee0088e5936c98b
content/157: 4a2e706133d34b12b398b9ab2a895001
content/158: 537b72ddd0a26379d0b0ab3618ac4b99
content/159: 371d0e46b4bd2c23f559b8bc112f6955
content/160: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/161: bcadfc362b69078beee0088e5936c98b
content/162: 4a2e706133d34b12b398b9ab2a895001
content/163: 249e3e1c1ceb337014c40c9587834504
content/164: 371d0e46b4bd2c23f559b8bc112f6955
content/165: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/166: bcadfc362b69078beee0088e5936c98b
content/167: 4a2e706133d34b12b398b9ab2a895001
content/168: 6c1cb8caa156a1270ba95c255549058f
content/169: 1e2203c6b2398f8e4d26d3c6e2bc7f9a
content/170: 371d0e46b4bd2c23f559b8bc112f6955
content/171: 4d7b9733eb25896fd9164a896355e641
content/172: bcadfc362b69078beee0088e5936c98b
content/173: 2b816b45e5ac21d335405e9c2b17642b
content/174: 0dffa8d835db9ce2ee41a2a6e69efb31
content/175: 371d0e46b4bd2c23f559b8bc112f6955
content/176: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/177: bcadfc362b69078beee0088e5936c98b
content/178: 4a2e706133d34b12b398b9ab2a895001
content/179: 11168096d5edb1f826080453e2996d4a
content/180: 371d0e46b4bd2c23f559b8bc112f6955
content/181: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/182: bcadfc362b69078beee0088e5936c98b
content/183: 4a2e706133d34b12b398b9ab2a895001
content/184: 3422cb7d11dd2bb9091679288ad8dbce
content/185: 371d0e46b4bd2c23f559b8bc112f6955
content/186: d71b6bb8e2dd6ce98101aec6a1dd77f2
content/187: bcadfc362b69078beee0088e5936c98b
content/188: 4a2e706133d34b12b398b9ab2a895001
content/189: b3f310d5ef115bea5a8b75bf25d7ea9a
content/190: a575a9bbb6adc3614e075cfe43a9dad9
6f170cd9c9fab731de5f71cf485eeef5:
meta/title: 341fcb2f99eb4527e898e7cc78eaedd8
meta/description: 75e5f7b311444862e09f872b1a3797d1
@@ -49087,3 +49143,55 @@ checksums:
content/25: 38f65a5fcf96ad88df123dc0ae4e6556
content/26: 746bc0998b79e81e1912e049a05865d3
content/27: 755eb21269b2c83655633ce1984f3558
20fd655a4cdb94d147d82d1611c06fe4:
meta/title: 7fd4a31b926070c583e409649b88694a
meta/description: 6f0a0fc3324606b469e022a8fa4e8ff8
content/0: 1b031fb0c62c46b177aeed5c3d3f8f80
content/1: 75591c909ad874c4733b4c66568a53d8
content/2: 821e6394b0a953e2b0842b04ae8f3105
content/3: 010470c994fc10eaf5a369342533ed0d
content/4: 9c8aa3f09c9b2bd50ea4cdff3598ea4e
content/5: 9085af1052bbd1b4a6a3e3e593fdc1e3
content/6: ceace0cdd474e50130ec1fc069399350
content/7: 371d0e46b4bd2c23f559b8bc112f6955
content/8: d097acee816b07cb65bad33fec5a83a5
content/9: bcadfc362b69078beee0088e5936c98b
content/10: 5c96636264d7f57ddac41000f6384ba4
content/11: eab48ffdef9c89f3a3df243d04b94b81
content/12: a6a0e6b8cf6c28587bee3a06e09c6af3
content/13: 371d0e46b4bd2c23f559b8bc112f6955
content/14: 9e0c0ba2b0df2454be80c83108047631
content/15: bcadfc362b69078beee0088e5936c98b
content/16: 353db07a018a23f8a3b6acbd2565ad09
content/17: c5e41b2d64f87372d5eb3c2c5071dcaa
content/18: 97885674f5c5f1325a53513bf07602b4
content/19: 371d0e46b4bd2c23f559b8bc112f6955
content/20: 9e0c0ba2b0df2454be80c83108047631
content/21: bcadfc362b69078beee0088e5936c98b
content/22: 6ede6c73bbbc3df5ac212c4c2368959e
content/23: 6b44b3e0ce956141e531afd7e41e6b1a
content/24: 1b9eb7896b93f0565f90f6f15218ab94
content/25: 371d0e46b4bd2c23f559b8bc112f6955
content/26: 50dffb7983dcba194c867e70e786e2d5
content/27: bcadfc362b69078beee0088e5936c98b
content/28: c54b98c7e00b649b379fbc226171e0a9
content/29: d1563f58482787d79fbea1e64cbc2b41
content/30: e01b0952cd4c9511030a4fc719549d89
content/31: 371d0e46b4bd2c23f559b8bc112f6955
content/32: b02fd1d45573dcde3a0ba9f16f110f8d
content/33: bcadfc362b69078beee0088e5936c98b
content/34: bcb37c2bc190c3c12e5c721d376909f7
content/35: 33e09b436c7bed97b18a331521cf9791
content/36: 8c9ee32d66137a7e2ab3997c6c01ee24
content/37: 371d0e46b4bd2c23f559b8bc112f6955
content/38: 9e0c0ba2b0df2454be80c83108047631
content/39: bcadfc362b69078beee0088e5936c98b
content/40: bcb37c2bc190c3c12e5c721d376909f7
content/41: 034ddae6d1cf3f0e7c3837ea13daf3bc
content/42: 55795caec4263261082c7f4dc5af0182
content/43: 371d0e46b4bd2c23f559b8bc112f6955
content/44: 9e0c0ba2b0df2454be80c83108047631
content/45: bcadfc362b69078beee0088e5936c98b
content/46: bcb37c2bc190c3c12e5c721d376909f7
content/47: b3f310d5ef115bea5a8b75bf25d7ea9a
content/48: dafdefed393d3f02fe15ef832c922450