Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/qdrant/mcp-server-qdrant/setupnpx skills add qdrant/mcp-server-qdrant --skill setupgit clone --depth 1 https://github.com/qdrant/mcp-server-qdrantWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00045 | $0.01464 |
| Opus 5 | $0.00023 | $0.00732 |
| Sonnet 5 | $0.00009 | $0.00293 |
| Haiku 4.5 | $0.00005 | $0.00146 |
Grade C, and why
setup scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -LsSf https://astral.sh/uv/install.sh | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -LsSf https://astral.sh/uv/install.sh | sh How it starts
The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Configure the Qdrant Power
After the Power is installed, guide the user through these steps.
Kiro IDE needs three separate things to be true before the server starts:
uvxis reachable from the process that launched Kiro.- The four variables exist in that process environment.
- The four variable names appear in Kiro's approved list.
A failure in any one of them shows up as the same Failed to connect log line,
so work through the steps in order instead of guessing.
1. Make sure that uvx is available
Run this command:
uvx --version
If the command succeeds, note the full path:
command -v uvx
If the command fails, tell the user that the Power requires uv.
Before you run the installation command, ask the user for approval.
curl -LsSf https://astral.sh/uv/install.sh | sh
After the installation, run uvx --version again.
If uvx is still unavailable, tell the user to restart the terminal and Kiro.
CAUTION: uv installs uvx into ~/.local/bin. A Kiro IDE started from the
macOS Dock or Finder receives a minimal PATH of /usr/bin:/bin:/usr/sbin:/sbin
and cannot resolve the bare uvx command. Step 5 covers this.
2. Collect the configuration
Ask the user for these values:
QDRANT_URL: The URL of the Qdrant server.COLLECTION_NAME: The collection for semantic memories.EMBEDDING_MODEL: The FastEmbed model name.
Use http://localhost:6333 as the usual local URL.
Use the Qdrant Cloud URL for a cloud connection.
If the user does not select an embedding model, use sentence-transformers/all-MiniLM-L6-v2.
If the user uses Qdrant Cloud, tell the user to set QDRANT_API_KEY locally.
If the user uses local Qdrant without authentication, use an empty QDRANT_API_KEY value.
Do not ask the user to send an API key in the conversation.
Tell the user that the server creates the collection automatically.
CAUTION: Do not change the embedding model for an existing collection. A different vector size can cause store or search errors.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 181 lines · 45 tokens per session scan C 3f95c6ffc024
setup is a skill published in the GitHub repository qdrant/mcp-server-qdrant (1,516 stars, last pushed 19d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,464 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ai-rag-pipeline-architect
Activate when architecting, implementing, or optimizing Retrieval-Augmented Generation (RAG) systems, semantic vector search, document chunking, hybrid search, and reranking pipelines — trigger phrasings include "build a RAG pipeline for my documents", "how do I chunk PDFs for vector search", "setup pgvector in…
pinecone-quickstart
Interactive Pinecone quickstart for new developers. Choose between two paths - Database (create an integrated index, upsert data, and query using Pinecone MCP + Python) or Assistant (create a Pinecone Assistant for document Q&A). Use when a user wants to get started with Pinecone for the first time or wants a guided…
pinecone-n8n
Build n8n workflows using the Pinecone Assistant node or Pinecone Vector Store node. Use when building RAG pipelines, chat-with-docs workflows, configuring Pinecone nodes in n8n, troubleshooting Pinecone n8n nodes, or asking about best practices for Pinecone in n8n.
pinecone-full-text-search
Create, ingest into, and query a Pinecone full-text-search (FTS) index using the preview API (2026-01.alpha, public preview). Use when the user or agent asks to build a text search index on Pinecone, add dense or sparse vector fields, ingest documents, construct scoreby clauses (text / querystring / densevector /…
pinecone-cli
Guide for using the Pinecone CLI (pc) to manage Pinecone resources from the terminal. The CLI supports ALL index types (standard, integrated, sparse) and all vector operations — unlike the MCP which only supports integrated indexes. Use for batch operations, vector management, backups, namespaces, CI/CD automation…
pinecone-help
Overview of all available Pinecone skills and what a user needs to get started. Invoke when a user asks what skills are available, how to get started with Pinecone, or what they need to set up before using any Pinecone skill.