Developer docs

Mistral AI integration

Mistral AI is a research lab building state-of-the-art open-source language…

Updated June 2026 54 actions available

Provider
mistral_ai
Category
Other
Setup
User-supplied API key
Actions
54 available

Quick start

Call Mistral AI from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Mistral AI's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "MISTRAL_AI_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Mistral AI API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

54 actions exposed via the Mistral AI integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 54 actions
  • MISTRAL_AI_CREATE_OR_UPDATE_AGENT_ALIAS
  • MISTRAL_AI_DELETE_AGENT
  • MISTRAL_AI_DELETE_CONVERSATION
  • MISTRAL_AI_DELETE_FILE
  • MISTRAL_AI_DELETE_LIBRARY
  • MISTRAL_AI_DELETE_LIBRARY_DOCUMENT
  • MISTRAL_AI_DELETE_LIBRARY_SHARE
  • MISTRAL_AI_DOWNLOAD_FILE
  • MISTRAL_AI_GET_AGENT
  • MISTRAL_AI_GET_AGENT_VERSION
  • MISTRAL_AI_GET_CONVERSATION
  • MISTRAL_AI_GET_CONVERSATION_HISTORY
  • MISTRAL_AI_GET_CONVERSATION_MESSAGES
  • MISTRAL_AI_GET_DOCUMENT_EXTRACTED_TEXT_URL
  • MISTRAL_AI_GET_DOCUMENT_SIGNED_URL
  • MISTRAL_AI_GET_DOCUMENT_STATUS
  • MISTRAL_AI_GET_DOCUMENT_TEXT_CONTENT
  • MISTRAL_AI_GET_FILE_SIGNED_URL
  • MISTRAL_AI_GET_FINE_TUNING_JOBS
  • MISTRAL_AI_GET_LIBRARY
  • MISTRAL_AI_GET_LIBRARY_DOCUMENT
  • MISTRAL_AI_GET_MODEL
  • MISTRAL_AI_LIST_AGENT_ALIASES
  • MISTRAL_AI_LIST_AGENTS
  • MISTRAL_AI_LIST_AGENT_VERSIONS
  • MISTRAL_AI_LIST_BATCH_JOBS
  • MISTRAL_AI_LIST_CONVERSATIONS
  • MISTRAL_AI_LIST_FILES
  • MISTRAL_AI_LIST_LIBRARIES
  • MISTRAL_AI_LIST_LIBRARY_DOCUMENTS
  • MISTRAL_AI_LIST_LIBRARY_SHARES
  • MISTRAL_AI_LIST_MODELS
  • MISTRAL_AI_REPROCESS_DOCUMENT
  • MISTRAL_AI_RESTART_CONVERSATION
  • MISTRAL_AI_RETRIEVE_FILE
  • MISTRAL_AI_START_CONVERSATION
  • MISTRAL_AI_UPDATE_AGENT
  • MISTRAL_AI_UPDATE_AGENT_VERSION
  • MISTRAL_AI_UPDATE_LIBRARY
  • MISTRAL_AI_UPDATE_LIBRARY_DOCUMENT
  • MISTRAL_AI_UPLOAD_FILE
  • MISTRAL_AI_UPLOAD_LIBRARY_DOCUMENT

Build with Mistral AI

Open OverSkill, describe what you want to build, and reference Mistral AI in your prompt — the AI will wire up the integration automatically.