Skip to content

Commit 6f48f00

Browse files
committed
Bump version: 0.1.23 → 0.1.24
1 parent cee3a27 commit 6f48f00

File tree

6 files changed

+16
-26
lines changed

6 files changed

+16
-26
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.23
2+
current_version = 0.1.24
33
commit = True
44
tag = True
55

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 \
5656
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
57-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.23
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.24
5858

5959
CMD ["documentdb-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/documentdb-mcp)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/documentdb-mcp)
2323

24-
*Version: 0.1.23*
24+
*Version: 0.1.24*
2525

2626
## Overview
2727

documentdb_mcp/agent.py

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44
import logging
55

66
from agent_utilities import (
7+
build_system_prompt_from_workspace,
8+
create_agent_parser,
79
create_agent_server,
810
initialize_workspace,
911
load_identity,
10-
build_system_prompt_from_workspace,
1112
)
12-
from agent_utilities.agent_utilities import create_agent_parser, get_mcp_config_path
13-
from agent_utilities.base_utilities import to_integer, to_boolean
1413

15-
__version__ = "0.1.23"
14+
__version__ = "0.1.24"
1615

1716
logging.basicConfig(
1817
level=logging.INFO,
@@ -30,20 +29,6 @@
3029
"AGENT_SYSTEM_PROMPT", meta.get("content") or build_system_prompt_from_workspace()
3130
)
3231

33-
DEFAULT_HOST = os.getenv("HOST", "0.0.0.0")
34-
DEFAULT_PORT = to_integer(os.getenv("PORT", "9000"))
35-
DEFAULT_DEBUG = to_boolean(os.getenv("DEBUG", "False"))
36-
DEFAULT_PROVIDER = os.getenv("PROVIDER", "openai")
37-
DEFAULT_MODEL_ID = os.getenv("MODEL_ID", "qwen/qwen3-coder-next")
38-
DEFAULT_LLM_BASE_URL = os.getenv("LLM_BASE_URL", "http://host.docker.internal:1234/v1")
39-
DEFAULT_LLM_API_KEY = os.getenv("LLM_API_KEY", "ollama")
40-
DEFAULT_MCP_URL = os.getenv("MCP_URL", None)
41-
DEFAULT_MCP_CONFIG = os.getenv("MCP_CONFIG", get_mcp_config_path())
42-
DEFAULT_CUSTOM_SKILLS_DIRECTORY = os.getenv("CUSTOM_SKILLS_DIRECTORY", None)
43-
DEFAULT_ENABLE_WEB_UI = to_boolean(os.getenv("ENABLE_WEB_UI", "False"))
44-
DEFAULT_ENABLE_OTEL = to_boolean(os.getenv("ENABLE_OTEL", "False"))
45-
DEFAULT_SSL_VERIFY = to_boolean(os.getenv("SSL_VERIFY", "True"))
46-
4732

4833
def agent_server():
4934
print(f"{DEFAULT_AGENT_NAME} v{__version__}")
@@ -71,6 +56,11 @@ def agent_server():
7156
name=DEFAULT_AGENT_NAME,
7257
system_prompt=DEFAULT_AGENT_SYSTEM_PROMPT,
7358
enable_otel=args.otel,
59+
otel_endpoint=args.otel_endpoint,
60+
otel_headers=args.otel_headers,
61+
otel_public_key=args.otel_public_key,
62+
otel_secret_key=args.otel_secret_key,
63+
otel_protocol=args.otel_protocol,
7464
)
7565

7666

documentdb_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
JWTClaimsLoggingMiddleware,
3333
)
3434

35-
__version__ = "0.1.23"
35+
__version__ = "0.1.24"
3636

3737
logger = get_logger(name="TokenMiddleware")
3838
logger.setLevel(logging.DEBUG)

pyproject.toml

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

55
[project]
66
name = "documentdb-mcp"
7-
version = "0.1.23"
7+
version = "0.1.24"
88
description = "DocumentDB MCP Server & A2A Server. DocumentDB is a MongoDB compatible open source document database built on PostgreSQL."
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,17 +18,17 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities[mcp]>=0.2.10",
21+
"agent-utilities[mcp]>=0.2.11",
2222
"pymongo>=4.0"
2323
]
2424

2525
[project.optional-dependencies]
2626
agent = [
27-
"agent-utilities[agent,logfire]>=0.2.10",
27+
"agent-utilities[agent,logfire]>=0.2.11",
2828
]
2929

3030
all = [
31-
"agent-utilities[mcp,agent,logfire]>=0.2.10",
31+
"agent-utilities[mcp,agent,logfire]>=0.2.11",
3232
]
3333

3434
[project.scripts]

0 commit comments

Comments
 (0)