Skip to content

Commit 0e19d87

Browse files
committed
Bump version: 1.1.43 → 1.1.44
1 parent 174c528 commit 0e19d87

20 files changed

+71
-73
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.42
2+
current_version = 1.1.44
33
commit = True
44
tag = True
55

@@ -15,10 +15,10 @@ replace = Version: {new_version}
1515
search = vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>={current_version}
1616
replace = vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>={new_version}
1717

18-
[bumpversion:file:vector_mcp/agent.py]
18+
[bumpversion:file:vector_mcp/agent_server.py]
1919
search = __version__ = "{current_version}"
2020
replace = __version__ = "{new_version}"
2121

22-
[bumpversion:file:vector_mcp/mcp.py]
22+
[bumpversion:file:vector_mcp/mcp_server.py]
2323
search = __version__ = "{current_version}"
2424
replace = __version__ = "{new_version}"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ ENV HOST=${HOST} \
5454
RUN apt-get update \
5555
&& apt-get install -y ripgrep tree fd-find curl nano libpq-dev \
5656
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
57-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.42
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.44
5858

5959
CMD ["vector-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
![PyPI - Wheel](https://img.shields.io/pypi/wheel/vector-mcp)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/vector-mcp)
2323

24-
*Version: 1.1.42*
24+
*Version: 1.1.44*
2525

2626
## Overview
2727

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "vector-mcp"
7-
version = "1.1.42"
7+
version = "1.1.44"
88
description = "Integrate RAG into AI Agents via MCP Server. Supports multiple Vector database technologies."
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
1111
license = { text = "MIT" }
1212
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3"]
1313
requires-python = ">=3.10"
1414
dependencies = [
15-
"agent-utilities[embeddings-openai,mcp]>=0.2.23",
15+
"agent-utilities[embeddings-openai,mcp]>=0.2.25",
1616
"chromadb>=1.5.1",
1717
"markdownify>=1.2.2",
1818
"beautifulsoup4>=4.14.3",
@@ -50,20 +50,20 @@ huggingface = [
5050
"llama-index-embeddings-huggingface>=0.6.1",
5151
"sentence_transformers>=5.2.2"]
5252
agent = [
53-
"agent-utilities[agent,logfire]>=0.2.23"]
53+
"agent-utilities[agent,logfire]>=0.2.25"]
5454
all = [
55-
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.42"
55+
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.44"
5656
]
5757

5858
[project.scripts]
59-
vector-mcp = "vector_mcp.mcp:mcp_server"
60-
vector-agent = "vector_mcp.agent:agent_server"
59+
vector-mcp = "vector_mcp.mcp_server:mcp_server"
60+
vector-agent = "vector_mcp.agent_server:agent_server"
6161

6262
[tool.setuptools]
6363
include-package-data = true
6464

6565
[tool.setuptools.package-data]
66-
vector_mcp = [ "mcp_config.json", "agent/**"]
66+
vector_mcp = [ "mcp_config.json", "agent_data/**"]
6767

6868
[tool.setuptools.packages.find]
69-
where = [ "."]
69+
where = ["."]

vector_mcp/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
CORE_MODULES = []
1111

1212
OPTIONAL_MODULES = {
13-
"vector_mcp.agent": "agent",
14-
"vector_mcp.mcp": "mcp",
13+
"vector_mcp.agent_server": "agent",
14+
"vector_mcp.mcp_server": "mcp",
1515
}
1616

1717

@@ -45,10 +45,10 @@ def _expose_members(module):
4545
else:
4646
globals()[f"_{extra_name.upper()}_AVAILABLE"] = False
4747

48-
_MCP_AVAILABLE = OPTIONAL_MODULES.get("vector_mcp.mcp") in [
48+
_MCP_AVAILABLE = OPTIONAL_MODULES.get("vector_mcp.mcp_server") in [
4949
m.__name__ for m in globals().values() if hasattr(m, "__name__")
5050
]
51-
_AGENT_AVAILABLE = "vector_mcp.agent" in globals()
51+
_AGENT_AVAILABLE = "vector_mcp.agent_server" in globals()
5252

5353
__all__.extend(["_MCP_AVAILABLE", "_AGENT_AVAILABLE"])
5454

vector_mcp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
# coding: utf-8
3-
from vector_mcp.mcp import mcp_server
3+
from vector_mcp.mcp_server import mcp_server
44

55
if __name__ == "__main__":
66
mcp_server()

vector_mcp/agent/IDENTITY.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)