product updateMistral AI

Mistral AI launches Connectors in Studio with MCP protocol integration and direct tool calling

TL;DR

Mistral AI has released Connectors in Studio, allowing developers to integrate custom MCP (Model Context Protocol) servers and built-in connectors via API/SDK. The release includes direct tool calling for deterministic workflows and human-in-the-loop approval flows for sensitive operations.

2 min read
0

Mistral AI launches Connectors in Studio with MCP protocol integration and direct tool calling

Mistral AI has released Connectors in Studio, a system for integrating custom MCP (Model Context Protocol) servers and enterprise data sources into AI applications through its API and SDK.

Core capabilities

Connectors enable programmatic creation, modification, and deletion of integrations through the Mistral API. According to Mistral AI, all registered connectors are centrally managed and available across Le Chat, AI Studio, and the upcoming Vibe platform.

The system supports:

  • Custom MCP server registration via HTTPS endpoints
  • Built-in connectors for GitHub, Gmail, Salesforce, and web search
  • OAuth configuration with client ID, scopes, and redirect URI handling
  • Tool filtering through tool_configuration to exclude specific actions
  • Workspace-level visibility controls

Direct tool calling

Mistral introduced deterministic tool execution, bypassing model decision-making:

result = await client.beta.connectors.call_tool_async(
    connector_id="my_deepwiki",
    tool_name="read_wiki_structure",
    arguments={"repoName": "sqlite/sqlite"},
)

This pattern enables pipeline automation where tool invocation timing and parameters are explicitly controlled by the application rather than the model.

Human-in-the-loop workflows

The requires_confirmation parameter pauses tool execution and returns control to the application before sensitive actions run:

{
    "type": "connector",
    "connector_id": "gmail",
    "tool_configuration": {
        "include": ["gmail_search"],
        "requires_confirmation": ["gmail_search"]
    }
}

The model proposes the action, but execution requires explicit application-level approval.

Integration pattern

A typical workflow involves:

  1. Registering a custom MCP server:
my_custom_mcp = client.beta.connectors.create_async(
    name="my_deepwiki",
    description="DeepWiki MCP for code repository exploration",
    server="https://mcp.deepwiki.com/mcp",
    visibility="shared_workspace",
)
  1. Attaching to conversations:
response = client.beta.conversations.start_async(
    model="mistral-medium-latest",
    inputs="Which enterprise accounts renewed last quarter?",
    tools=[{"type": "connector", "connector_id": "salesforce-crm"}],
)

Connectors work with Mistral's Conversation API, Completions API, and Agent SDK. No pricing details for connector usage were disclosed.

What this means

Mistral is positioning against the operational overhead of maintaining custom API integrations. By centralizing connector management and supporting the MCP protocol, teams can share integrations across projects rather than reimplementing OAuth flows and API clients in application code. The direct tool calling mode addresses deterministic workflow requirements where model autonomy is undesirable. Human-in-the-loop confirmation provides a governance layer for production deployments where certain actions require manual approval.

The system is in public preview at console.mistral.ai/build/connectors.

Related Articles

product update

Mistral Launches Agents API with Code Execution, Web Search, and MCP Tool Integration

Mistral AI has released its Agents API, a framework for building AI agents with built-in connectors for code execution, web search, image generation, and Model Context Protocol tools. The API includes persistent conversation memory and multi-agent orchestration capabilities, enabling agents to maintain context across interactions and coordinate complex workflows.

model release

Mistral OCR 3 launches at $2 per 1,000 pages with 74% win rate over previous version

Mistral AI released Mistral OCR 3, a document extraction model priced at $2 per 1,000 pages ($1 with Batch API discount). The model achieves a 74% overall win rate over its predecessor on forms, scanned documents, complex tables, and handwriting according to internal benchmarks.

product update

Mistral Launches OCR API at $1 Per 1,000 Pages, Claims 94.89% Accuracy on Document Benchmarks

Mistral AI has released Mistral OCR, an API for extracting text and images from documents at $1 per 1,000 pages (approximately $0.50 with batch inference). The company claims 94.89% overall accuracy on its internal test set, comparing favorably to GPT-4o (89.77%), Gemini 2.0 Flash (88.69%), and Azure OCR (89.52%).

product update

Mistral Rebrands Le Chat as Vibe, Launches Agentic Work and Code Modes with VS Code Extension

Mistral has rebranded Le Chat as Vibe, launching new agentic capabilities for long-running work tasks and software development. The platform now includes Work Mode for enterprise knowledge search and document synthesis, Code Mode with GitHub integration and sandboxed execution, and a new VS Code extension. Pricing starts at $14.99/month for Pro and $24.99/user/month for Team plans.

Comments

Loading...