Openai MCP Server

Qdrant MCP server with OpenAI Compatible API embedding support

Local serverstdioPython

What is the Openai MCP server?

Most AI and media services work still happens through a UI a human drives. Openai MCP server moves it into the conversation instead. Qdrant MCP server with OpenAI Compatible API embedding support.

The tools it exposes

The server publishes 9 tools. What each one is for:

  • qdrant-store — 情報とメタデータを保存
  • qdrant-find — 意味検索による関連情報の取得
  • OPENAI_API_KEY — OpenAI API キー
  • OPENAI_BASE_URL — OpenAI Compatible API のベース URL
  • OPENAI_EMBEDDING_MODEL — 埋め込みモデル(デフォルト: text-embedding-3-small)
  • QDRANT_URL — Qdrant サーバー URL(デフォルト: http://localhost:6333)
  • QDRANT_API_KEY — Qdrant API キー
  • QDRANT_COLLECTION_NAME — コレクション名(デフォルト: mcp_memories)
  • QDRANT_SEARCH_LIMIT — 検索結果の最大数(デフォルト: 5)

What it needs from you

Configuration is passed through the environment: OPENAI_API_KEY, QDRANT_URL, QDRANT_COLLECTION_NAME, QDRANT_API_KEY, OPENAI_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as @rocklerson/openai-mcp-qdrant, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Openai's toolset — qdrant-store, qdrant-find, OPENAI_API_KEY and 6 more — is a fair guide to whether it matches your workflow. It is maintained by rocklerson; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Openai.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
qdrant-store情報とメタデータを保存
qdrant-find意味検索による関連情報の取得
OPENAI_API_KEYOpenAI API キー
OPENAI_BASE_URLOpenAI Compatible API のベース URL
OPENAI_EMBEDDING_MODEL埋め込みモデル(デフォルト: text-embedding-3-small)
QDRANT_URLQdrant サーバー URL(デフォルト: http://localhost:6333)
QDRANT_API_KEYQdrant API キー
QDRANT_COLLECTION_NAMEコレクション名(デフォルト: mcp_memories)
QDRANT_SEARCH_LIMIT検索結果の最大数(デフォルト: 5)

How to install the Openai MCP server

{
  "mcpServers": {
    "qdrant": {
      "command": "npx",
      "args": ["-y", "@rocklerson/openai-mcp-qdrant"],
      "env": {
        "OPENAI_API_KEY": "your-api-key",
        "QDRANT_URL": "http://localhost:6333",
        "QDRANT_COLLECTION_NAME": "claude_memories"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
QDRANT_URLEndpoint or connection string the server talks to.Yes
QDRANT_COLLECTION_NAMEConfiguration value read at startup.Optional
QDRANT_API_KEYCredential the server authenticates with.Yes
OPENAI_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Openai to qdrant-store.
  • Use Openai to qdrant-find.
  • Use Openai to OPENAI API KEY.

Frequently asked questions

It connects Openai to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (qdrant-store, qdrant-find, OPENAI_API_KEY, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Openai directly.