Passer au contenu principal

Documentation Index

Fetch the complete documentation index at: https://docs.imoria.net/llms.txt

Use this file to discover all available pages before exploring further.

L’écosystème MCP grandit vite. La plupart des clients compatibles utilisent le même format JSON que Claude Desktop, avec parfois un emplacement de fichier différent. Voici les principaux.
Règle universelle : tout client qui supporte MCP HTTP/SSE peut pointer sur https://mcp.imoria.net/mcp. Les modalités d’authentification s’appliquent selon ce qui a été convenu avec Imoria. Le reste est cosmétique.

Cline (extension VS Code)

Cline est une extension VS Code qui apporte un agent IA dans l’éditeur.
  • Réglages : Cmd+, → recherche “Cline MCP” → bouton Edit MCP Settings.
  • Format : identique à Claude Desktop (bloc mcpServers).
Config Cline
{
  "mcpServers": {
    "imoria": {
      "url": "https://mcp.imoria.net/mcp"
    }
  }
}

Windsurf

Windsurf (Codeium) supporte MCP via son panneau de configuration.
  • Réglages : Windsurf → Settings → MCP Servers.
  • Ajout : bouton Add Server, type Remote / HTTP-SSE.
  • URL : https://mcp.imoria.net/mcp.

Zed

Zed supporte MCP depuis 2025. Configuration via ~/.config/zed/settings.json.
Zed settings.json
{
  "context_servers": {
    "imoria": {
      "command": {
        "path": "curl",
        "args": ["-N", "https://mcp.imoria.net/mcp"]
      }
    }
  }
}
(Zed utilise une approche command-based ; certaines versions ajoutent un support HTTP/SSE direct.)

Continue

Continue est une extension open source pour VS Code et JetBrains.
  • Réglages : ~/.continue/config.json.
Continue config.json
{
  "mcpServers": [
    {
      "name": "imoria",
      "url": "https://mcp.imoria.net/mcp"
    }
  ]
}

Pour un autre client

Chercher dans les réglages du client une section MCP, Model Context Protocol, Tools, ou External agents. Deux informations suffisent :
  1. URL du serveur : https://mcp.imoria.net/mcp
  2. Transport : HTTP avec Server-Sent Events (SSE)
Si le client ne supporte que les serveurs MCP locaux (commande système), la voie HTTP directe reste possible. Voir Connexion HTTP/SSE directe.

Compatibilité connue

ClientSupport MCPType recommandé
Claude DesktopnatifHTTP/SSE
CursornatifHTTP/SSE
Claude Code (CLI)natifHTTP/SSE
Cline (VS Code)natifHTTP/SSE
WindsurfnatifHTTP/SSE
ZedcontextuelCommand + curl
ContinuenatifHTTP/SSE
GoosenatifHTTP/SSE
OpenCodenatifHTTP/SSE
ChatGPTpas de MCP natifVoir HTTP/SSE direct
Cette liste évolue rapidement.