Skip to content

Commit a1f7261

Browse files
committed
Bump version: 0.1.26 → 0.1.27
1 parent 090a961 commit a1f7261

File tree

6 files changed

+17
-27
lines changed

6 files changed

+17
-27
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.26
2+
current_version = 0.1.27
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ ENV HOST=${HOST} \
5555
RUN apt-get update \
5656
&& apt-get install -y ripgrep tree fd-find curl nano \
5757
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
58-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.26
58+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.27
5959

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

24-
*Version: 0.1.26*
24+
*Version: 0.1.27*
2525

2626
## Overview
2727

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 = "searxng-mcp"
7-
version = "0.1.26"
7+
version = "0.1.27"
88
description = "SearXNG Search Engine 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]

searxng_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.26"
14+
__version__ = "0.1.27"
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

searxng_mcp/mcp.py

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

34-
__version__ = "0.1.26"
34+
__version__ = "0.1.27"
3535

3636
logging.basicConfig(
3737
level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"

0 commit comments

Comments
 (0)