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 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-qdrant-embedding-search

v1.0.1

Published

MCP server for searching documentation in Qdrant via LMStudio embeddings

Readme

mcp-qdrant-embedding-search

MCP server that searches documents in Qdrant using embeddings from LMStudio.

Takes a text query, converts it to a vector via LMStudio's OpenAI-compatible API, and performs semantic search in Qdrant.

Prerequisites

  • Node.js 18+
  • LMStudio running with an embedding model loaded (default: text-embedding-qwen3-embedding-4b)
  • Qdrant running with a collection containing your documents

Usage

With npx

{
  "mcpServers": {
    "qdrant-docs": {
      "command": "npx",
      "args": ["-y", "mcp-qdrant-embedding-search"],
      "env": {
        "QDRANT_URL": "http://localhost:6333",
        "QDRANT_COLLECTION": "my_docs",
        "LMSTUDIO_URL": "http://localhost:1234"
      }
    }
  }
}

With node (local)

git clone https://github.com/plixplox/mcp-qdrant-embedding-search.git
cd mcp-qdrant-embedding-search
npm install
npm run build
{
  "mcpServers": {
    "qdrant-docs": {
      "command": "node",
      "args": ["/path/to/mcp-qdrant-embedding-search/dist/index.js"],
      "env": {
        "QDRANT_COLLECTION": "my_docs"
      }
    }
  }
}

Tools

search_docs

Search documents by semantic similarity.

| Parameter | Type | Required | Description | |---|---|---|---| | query | string | yes | Search query text | | limit | number | no | Max results (default: 5) | | collection | string | no | Qdrant collection (default: from config) |

list_collections

List all available Qdrant collections. No parameters.

Configuration

All settings are configured via environment variables:

| Variable | Default | Description | |---|---|---| | LMSTUDIO_URL | http://localhost:1234 | LMStudio server URL | | LMSTUDIO_EMBEDDING_MODEL | text-embedding-qwen3-embedding-4b | Embedding model name | | QDRANT_URL | http://localhost:6333 | Qdrant server URL | | QDRANT_API_KEY | — | Qdrant API key (optional) | | QDRANT_COLLECTION | documents | Default collection to search | | SEARCH_LIMIT | 5 | Default number of results | | TOOL_SEARCH_NAME | search_docs | Custom name for the search tool | | TOOL_SEARCH_DESCRIPTION | Search documentation by semantic similarity... | Custom description for the search tool | | TOOL_LIST_NAME | list_collections | Custom name for the list tool | | TOOL_LIST_DESCRIPTION | List all available Qdrant collections | Custom description for the list tool |

Custom tool descriptions

Tool names and descriptions are visible to the LLM and affect when it decides to call them. Customize them to match your use case:

{
  "env": {
    "TOOL_SEARCH_NAME": "search_api_reference",
    "TOOL_SEARCH_DESCRIPTION": "Search the REST API reference. Use when you need endpoint specs, request/response schemas, or auth details."
  }
}

License

ISC