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 skills add BigKAA/qmcp --skill qmcp-managergit clone --depth 1 https://github.com/BigKAA/qmcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bigkaa/qmcp/qmcp-manager)<a href="https://agentmods.dev/skills/bigkaa/qmcp/qmcp-manager"><img src="https://agentmods.dev/badge/skills/bigkaa/qmcp/qmcp-manager/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bigkaa/qmcp/qmcp-manager"><img src="https://agentmods.dev/badge/skills/bigkaa/qmcp/qmcp-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00146 | $0.02268 |
| Opus 5 | $0.00073 | $0.01134 |
| Sonnet 5 | $0.00029 | $0.00454 |
| Haiku 4.5 | $0.00015 | $0.00227 |
Grade A, and why
qmcp-manager scanned grade A with 0 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 9d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QDrant MCP Manager Skill
Overview
This skill manages the qmcp (QDrant MCP Server) - a semantic search server for code and documentation using Qdrant vector database. It provides tools for introspection, cleanup, and maintenance of indexed codebases.
Available MCP Tools
Diagnostics Tools (NEW)
| Tool | Purpose |
|---|---|
qdrant_diagnose_collection |
Full collection diagnostics - vectors, files, types, issues |
qdrant_list_indexed_files |
Paginated list of indexed files with metadata |
qdrant_diff_collection |
Compare Qdrant state with filesystem (orphans, missing, modified) |
Existing Tools
| Tool | Purpose |
|---|---|
qdrant_search |
Semantic search in collection |
qdrant_index_directory |
Index directory into collection |
qdrant_reindex |
Full or incremental reindex |
qdrant_list_collections |
List all collections |
qdrant_get_collection_info |
Get collection metadata |
qdrant_delete_collection |
Delete a collection |
qdrant_cleanup |
Clean stale vectors (dry-run supported) |
qdrant_watch_start/stop |
Start/stop file watching |
qdrant_get_status |
Server status |
Workflows
1. Quick Status Check
When user asks about Qdrant state:
1. Use qdrant_list_collections to see what exists
2. For each collection, use qdrant_get_collection_info
3. Summarize: vectors count, files, status
2. Full Diagnostics
When user asks to diagnose or understand what's indexed:
1. Ask for collection name (or use "code" as default)
2. Call qdrant_diagnose_collection(collection="...")
3. Present results:
- Summary: total vectors, total files, status
- File type distribution
- Chunk type distribution
- Index age range (oldest/newest indexed)
- Issues found
- File list with details
3. Find Discrepancies (Diff)
When user wants to compare index with filesystem:
1. Call qdrant_diff_collection(collection="...", repo_path="/path/to/repo")
2. Present summary:
- orphans: vectors without files (DELETE THESE)
- missing: files without vectors (NEED INDEXING)
- modified: files with hash mismatch (NEED REINDEX)
3. Recommend actions based on findings
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.
- 9d ago First seen · 254 lines · 146 tokens per session scan A 8ef07059803d
qmcp-manager is a skill published in the GitHub repository BigKAA/qmcp (1 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 146 tokens to every session and 2,268 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
qdrant
Vector search engine for production RAG systems.
chroma
Embedding database for RAG and semantic search.
pinecone
Managed vector DB for production RAG and search.
similarity-search-patterns
Implement efficient similarity search with vector databases. Use when building semantic search, implementing nearest neighbor queries, or optimizing retrieval performance.
pgvector-semantic-search
Use this skill for setting up vector similarity search with pgvector for AI/ML embeddings, RAG applications, or semantic search. Trigger when user asks to: Store or search vector embeddings in PostgreSQL Set up semantic search, similarity search, or nearest neighbor search Create HNSW or IVFFlat indexes for vectors…
postgres-hybrid-text-search
Use this skill to implement hybrid search combining BM25 keyword search with semantic vector search using Reciprocal Rank Fusion (RRF). Trigger when user asks to: Combine keyword and semantic search Implement hybrid search or multi-modal retrieval Use BM25/pgtextsearch with pgvector together Implement RRF (Reciprocal…