npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

qdrant-search-mcp-server

v0.5.5

Published

MCP server to search qdrant database

Readme

Qdrant Search MCP Server

A Model Context Protocol (MCP) server for enhanced Qdrant vector database functionality. This server provides a tool for searching the Qdrant vector database.

Features

  • qdrantSearch (default): Searches a Qdrant vector database collection — name and description can be overridden via --name and --description flags

Installation

You can use it directly with npx without global installation:

npx qdrant-search-mcp-server

Configuring with npx

When using npx, the server will load configuration from a .env file in the current directory if present. You can configure these environment variables:

QDRANT_URL=https://qdrant.is.solo.io
QDRANT_API_KEY=add your key

# As long as the embedding service is openai api compatible, you can use them also.
OPENAI_API_KEY=add your key
OPENAI_ENDPOINT=https://api.openai.com/v1
OPENAI_MODEL=text-embedding-3-large

Meanwhile, collections are provided directly in the command line, or the defaults will be used if nothing is specified.

npx qdrant-search-mcp-server --collections=istio,gloo-mesh-enterprise

Additionally, you can customize the MCP tool metadata at launch:

npx qdrant-search-mcp-server \
  --collections=istio,gloo-mesh-enterprise \
  --name=mySearchTool \
  --description="Custom Qdrant search tool"  # override default name/description

Usage with Claude

To use this MCP server with Claude, add it to your MCP settings configuration file:

{
  "mcpServers": {
    "qdrantSearch": {
      "command": "npx",
      "args": ["qdrant-search-mcp-server --collections=istio,gloo-mesh-enterprise --name=mySearchTool --description='Search Documentation related to Istio and Gloo Mesh'"],
      "env": {
        "QDRANT_URL": "http://localhost:6333",
        "QDRANT_API_KEY": "your_api_key",
        "OPENAPI_API_KEY": "your_api_key",
      }
    }
  }
}

Usage with Visual Studio Code

To use this MCP server with Visual Studio Code, you can add it to your mcp.json configuration file. Below is an example configuration:

{
  "servers": {
    "qdrantSearch": {
      "command": "npx",
      "args": ["qdrant-search-mcp-server"],
      "env": {
        "QDRANT_URL": "http://localhost:6333",
        "QDRANT_API_KEY": "your_api_key",
        "OPENAPI_API_KEY": "your_api_key",
      }
    }
  }
}

qdrantSearch

use_mcp_tool
server_name: qdrantSearch
tool_name: qdrantSearch
arguments: {
  "query": "your search query",
  "collection": "my-collection",
  "limit": 5
}