Skip to content

Commit 34de160

Browse files
committed
Bump version: 1.3.23 → 1.3.24
1 parent d69dcc6 commit 34de160

File tree

7 files changed

+18
-28
lines changed

7 files changed

+18
-28
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 = 1.3.23
2+
current_version = 1.3.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 ansible-tower-mcp[all]>=1.3.23
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow ansible-tower-mcp[all]>=1.3.24
5858

5959
CMD ["ansible-tower-mcp"]

README.md

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

25-
*Version: 1.3.23*
25+
*Version: 1.3.24*
2626

2727
## Overview
2828

ansible_tower_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_identities,
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__ = "1.3.23"
14+
__version__ = "1.3.24"
1615

1716
logging.basicConfig(
1817
level=logging.INFO,
@@ -46,20 +45,6 @@
4645
if tag not in ["supervisor", "default"]
4746
}
4847

49-
DEFAULT_HOST = os.getenv("HOST", "0.0.0.0")
50-
DEFAULT_PORT = to_integer(os.getenv("PORT", "9000"))
51-
DEFAULT_DEBUG = to_boolean(os.getenv("DEBUG", "False"))
52-
DEFAULT_PROVIDER = os.getenv("PROVIDER", "openai")
53-
DEFAULT_MODEL_ID = os.getenv("MODEL_ID", "qwen/qwen3-coder-next")
54-
DEFAULT_LLM_BASE_URL = os.getenv("LLM_BASE_URL", "http://host.docker.internal:1234/v1")
55-
DEFAULT_LLM_API_KEY = os.getenv("LLM_API_KEY", "ollama")
56-
DEFAULT_MCP_URL = os.getenv("MCP_URL", None)
57-
DEFAULT_MCP_CONFIG = os.getenv("MCP_CONFIG", get_mcp_config_path())
58-
DEFAULT_CUSTOM_SKILLS_DIRECTORY = os.getenv("CUSTOM_SKILLS_DIRECTORY", None)
59-
DEFAULT_ENABLE_WEB_UI = to_boolean(os.getenv("ENABLE_WEB_UI", "False"))
60-
DEFAULT_ENABLE_OTEL = to_boolean(os.getenv("ENABLE_OTEL", "False"))
61-
DEFAULT_SSL_VERIFY = to_boolean(os.getenv("SSL_VERIFY", "True"))
62-
6348

6449
def agent_server():
6550
print(f"{DEFAULT_AGENT_NAME} v{__version__}")
@@ -87,6 +72,11 @@ def agent_server():
8772
name=DEFAULT_AGENT_NAME,
8873
system_prompt=DEFAULT_AGENT_SYSTEM_PROMPT,
8974
enable_otel=args.otel,
75+
otel_endpoint=args.otel_endpoint,
76+
otel_headers=args.otel_headers,
77+
otel_public_key=args.otel_public_key,
78+
otel_secret_key=args.otel_secret_key,
79+
otel_protocol=args.otel_protocol,
9080
agent_definitions=CHILD_AGENT_DEFS if CHILD_AGENT_DEFS else None,
9181
)
9282

ansible_tower_mcp/ansible_tower_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import re
99
import urllib3
1010

11-
__version__ = "1.3.23"
11+
__version__ = "1.3.24"
1212

1313

1414
class Api:

ansible_tower_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
JWTClaimsLoggingMiddleware,
3838
)
3939

40-
__version__ = "1.3.23"
40+
__version__ = "1.3.24"
4141

4242
logger = get_logger(name="TokenMiddleware")
4343
logger.setLevel(logging.DEBUG)

pyproject.toml

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

55
[project]
66
name = "ansible-tower-mcp"
7-
version = "1.3.23"
7+
version = "1.3.24"
88
description = "Ansible Tower MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,20 +18,20 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities>=0.2.10",
21+
"agent-utilities>=0.2.11",
2222
]
2323

2424
[project.optional-dependencies]
2525
mcp = [
26-
"agent-utilities[mcp]>=0.2.10",
26+
"agent-utilities[mcp]>=0.2.11",
2727
]
2828

2929
agent = [
30-
"agent-utilities[agent,logfire]>=0.2.10",
30+
"agent-utilities[agent,logfire]>=0.2.11",
3131
]
3232

3333
all = [
34-
"agent-utilities[mcp,agent,logfire]>=0.2.10",
34+
"agent-utilities[mcp,agent,logfire]>=0.2.11",
3535
]
3636

3737
[project.scripts]

0 commit comments

Comments
 (0)