> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# open-connector

> Use open-connector with Eden AI to expose 500+ AI models through a self-hosted gateway with SDK, CLI, MCP and HTTP access.

export const TechArticleSchema = ({title, description, path, articleSection, about, proficiencyLevel = "Beginner", dependencies, keywords = [], datePublished, dateModified, image, inLanguage = "en"}) => {
  const baseUrl = "https://www.edenai.co/docs";
  const canonicalUrl = `${baseUrl}/${path}`.replace(/\/+$/, "");
  const ogParams = new URLSearchParams({
    division: articleSection || "",
    title: title || "",
    description: description || ""
  });
  const resolvedImage = image || `https://edenai.mintlify.app/_mintlify/api/og?${ogParams.toString()}`;
  const data = {
    "@context": "https://schema.org",
    "@type": "TechArticle",
    "@id": `${canonicalUrl}#techarticle`,
    mainEntityOfPage: {
      "@type": "WebPage",
      "@id": canonicalUrl
    },
    headline: title,
    name: title,
    description: description,
    url: canonicalUrl,
    inLanguage: inLanguage,
    isPartOf: {
      "@type": "WebSite",
      name: "Eden AI Documentation",
      url: baseUrl
    },
    author: [{
      "@type": "Organization",
      name: "Eden AI",
      url: "https://www.edenai.co/"
    }],
    publisher: {
      "@type": "Organization",
      name: "Eden AI",
      url: "https://www.edenai.co/",
      logo: {
        "@type": "ImageObject",
        url: "https://www.edenai.co/assets/logo.png"
      }
    }
  };
  if (articleSection) data.articleSection = articleSection;
  if (about) data.about = {
    "@type": "Thing",
    name: about
  };
  if (proficiencyLevel) data.proficiencyLevel = proficiencyLevel;
  if (dependencies) data.dependencies = dependencies;
  if (keywords && keywords.length) data.keywords = keywords;
  if (datePublished) data.datePublished = datePublished;
  if (dateModified) data.dateModified = dateModified;
  data.image = Array.isArray(resolvedImage) ? resolvedImage : [resolvedImage];
  const json = JSON.stringify(data);
  const schemaId = `techarticle-${canonicalUrl}`;
  React.useEffect(() => {
    if (typeof document === "undefined") return;
    document.querySelectorAll(`script[data-schema-id="${schemaId}"]`).forEach(n => n.remove());
    const script = document.createElement("script");
    script.type = "application/ld+json";
    script.dataset.schemaId = schemaId;
    script.textContent = json;
    document.head.appendChild(script);
    return () => script.remove();
  }, [json, schemaId]);
  return null;
};

<TechArticleSchema title={"open-connector"} description={"Use open-connector with Eden AI to expose 500+ AI models through a self-hosted gateway with SDK, CLI, MCP and HTTP access."} path="v3/integrations/open-connector" articleSection="AI Gateway" about={"LLM Gateway Integration"} proficiencyLevel="Intermediate" keywords={["Eden AI", "AI API", "open-connector", "LLM Gateway", "MCP"]} datePublished="2026-07-27T00:00:00Z" dateModified="2026-07-27T00:00:00Z" />

Use open-connector with Eden AI to expose 500+ AI models through a self-hosted gateway with SDK, CLI, MCP and HTTP access.

## Overview

[open-connector](https://github.com/oomol-lab/open-connector) is an open-source gateway connecting 1000+ SaaS providers to AI agents via SDK, CLI, MCP and HTTP. Eden AI ships as a **built-in connector**, so any agent wired through open-connector reaches models from OpenAI, Anthropic, Google, Mistral and more behind one key, with EU-based, GDPR-aligned inference and per-request cost visibility.

## Installation

open-connector is a self-hosted gateway, distributed as a Docker image:

<CodeGroup>
  ```bash Docker theme={null}
  docker compose up
  ```
</CodeGroup>

This pulls `ghcr.io/oomol-lab/open-connector:latest` and serves the console and API at `http://localhost:3000`.

## Quick Start

Store your Eden AI key as a connection credential, then call the `edenai` service:

<CodeGroup>
  ```bash Add credential theme={null}
  curl -s -X PUT http://localhost:3000/api/connections/edenai \
    -H 'content-type: application/json' \
    -d '{"authType":"api_key","values":{"apiKey":"your_api_key_here"}}'
  ```

  ```bash Call Eden AI theme={null}
  curl -s -X POST http://localhost:3000/v1/actions/edenai.create_chat_completion \
    -H 'content-type: application/json' \
    -d '{
      "input": {
        "model": "openai/gpt-5.5",
        "messages": [{"role": "user", "content": "Hello! How are you?"}]
      }
    }'
  ```
</CodeGroup>

The base URL (`https://api.edenai.run/v3`) is built into the connector — no extra configuration needed. The response includes the standard OpenAI-compatible fields plus a top-level `cost` field with the Eden AI billed cost.

## Available Models

The `edenai` service exposes `edenai.list_models` and `edenai.create_chat_completion`. Use the `provider/model` format for any Eden AI model:

**OpenAI**

* `openai/gpt-5.5`
* `openai/gpt-5-mini`

**Anthropic**

* `anthropic/claude-sonnet-5`
* `anthropic/claude-haiku-4-5`

**Google**

* `google/gemini-2.5-pro`
* `google/gemini-3.5-flash`

**Mistral**

* `mistral/mistral-large-2512`
* `mistral/mistral-small-2603`

## Credentials

Unlike most integrations, open-connector stores the Eden AI key as a **connection credential** through its API rather than an environment variable:

<CodeGroup>
  ```bash Update credential theme={null}
  curl -s -X PUT http://localhost:3000/api/connections/edenai \
    -H 'content-type: application/json' \
    -d '{"authType":"api_key","values":{"apiKey":"your_api_key_here"}}'
  ```
</CodeGroup>

## Next Steps

* [Lynkr](/docs/v3/integrations/lynkr) - Another self-hosted LLM gateway
* [Bifrost](/docs/v3/integrations/bifrost) - Custom-provider LLM gateway
* [Chat Completions](/docs/v3/llms/chat-completions) - Core LLM endpoint
