@oomkapwn/enquire-mcp 3.0.1 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +69 -0
- package/README.md +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +144 -1
- package/dist/index.js.map +1 -1
- package/dist/tools.d.ts +34 -0
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +28 -2
- package/dist/tools.js.map +1 -1
- package/docs/api.md +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oomkapwn/enquire-mcp",
|
|
3
|
-
"version": "3.0
|
|
4
|
-
"description": "The most advanced MCP server for Obsidian vaults. Hybrid retrieval (BM25 + TF-IDF + multilingual ML embeddings, RRF-fused) with BGE cross-encoder reranking, HNSW vector index, int8 quantization, late-chunking, PDFs (with OCR), wikilinks, backlinks, Dataview, frontmatter, canvas.
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"description": "The most advanced MCP server for Obsidian vaults. Hybrid retrieval (BM25 + TF-IDF + multilingual ML embeddings, RRF-fused) with BGE cross-encoder reranking, HNSW vector index, int8 quantization, late-chunking, HyDE-augmented retrieval, sub-question decomposition, PDFs (with OCR), wikilinks, backlinks, Dataview, frontmatter, canvas. 40 tools, 19 MCP prompts, 612 tests, SLSA-3, semver-bound. Works with Claude Code, Claude Desktop, Cursor, ChatGPT custom GPT, Codex, and any MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"enquire-mcp": "dist/index.js"
|
|
@@ -64,6 +64,10 @@
|
|
|
64
64
|
"hypertext",
|
|
65
65
|
"rag",
|
|
66
66
|
"retrieval-augmented-generation",
|
|
67
|
+
"hyde",
|
|
68
|
+
"hypothetical-document-embeddings",
|
|
69
|
+
"agentic-rag",
|
|
70
|
+
"sub-question-decomposition",
|
|
67
71
|
"hybrid-retrieval",
|
|
68
72
|
"semantic-search",
|
|
69
73
|
"vector-search",
|