better-qdrant-mcp-server 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -55,7 +55,14 @@ To use this MCP server with Claude, add it to your MCP settings configuration fi
55
55
  "args": ["better-qdrant-mcp-server"],
56
56
  "env": {
57
57
  "QDRANT_URL": "http://localhost:6333",
58
- "OPENAI_API_KEY": "your_openai_api_key"
58
+ "QDRANT_API_KEY": "your_api_key_if_needed",
59
+ "DEFAULT_EMBEDDING_SERVICE": "ollama",
60
+ "OPENAI_API_KEY": "your_openai_api_key",
61
+ "OPENAI_ENDPOINT": "https://api.openai.com/v1",
62
+ "OPENROUTER_API_KEY": "your_openrouter_api_key",
63
+ "OPENROUTER_ENDPOINT": "https://api.openrouter.com/v1",
64
+ "OLLAMA_ENDPOINT": "http://localhost:11434",
65
+ "OLLAMA_MODEL": "nomic-embed-text"
59
66
  }
60
67
  }
61
68
  }
package/build/index.js CHANGED
@@ -14,7 +14,7 @@ class BetterQdrantServer {
14
14
  constructor() {
15
15
  this.server = new Server({
16
16
  name: 'better-qdrant',
17
- version: '0.1.0',
17
+ version: '0.1.1',
18
18
  }, {
19
19
  capabilities: {
20
20
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-qdrant-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for enhanced Qdrant vector database functionality",
5
5
  "type": "module",
6
6
  "main": "build/index.js",