arch-ops-server 3.3.2__tar.gz → 3.3.3__tar.gz
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.
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/PKG-INFO +1 -1
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/pyproject.toml +1 -1
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/__init__.py +1 -1
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/system_health_check.py +14 -15
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/README.md +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/aur.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/config.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/http_server.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/logs.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/mirrors.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/news.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/pacman.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/py.typed +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/server.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/system.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/tool_metadata.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/utils.py +0 -0
- {arch_ops_server-3.3.2 → arch_ops_server-3.3.3}/src/arch_ops_server/wiki.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: arch-ops-server
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.3
|
|
4
4
|
Summary: MCP server bridging AI assistants with Arch Linux ecosystem (Wiki, AUR, official repos)
|
|
5
5
|
Keywords: arch-linux,mcp,model-context-protocol,aur,pacman,wiki,ai-assistant
|
|
6
6
|
Author: Nihal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "arch-ops-server"
|
|
3
|
-
version = "3.3.
|
|
3
|
+
version = "3.3.3"
|
|
4
4
|
description = "MCP server bridging AI assistants with Arch Linux ecosystem (Wiki, AUR, official repos)"
|
|
5
5
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
6
6
|
license = { text = "GPL-3.0-only OR MIT" }
|
|
@@ -6,7 +6,7 @@ A Model Context Protocol server that bridges AI assistants with the Arch Linux
|
|
|
6
6
|
ecosystem, providing access to the Arch Wiki, AUR, and official repositories.
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
|
-
__version__ = "3.3.
|
|
9
|
+
__version__ = "3.3.3"
|
|
10
10
|
|
|
11
11
|
from .wiki import search_wiki, get_wiki_page, get_wiki_page_as_text
|
|
12
12
|
from .aur import (
|
|
@@ -7,21 +7,6 @@ Provides a comprehensive system health check by integrating multiple system diag
|
|
|
7
7
|
import logging
|
|
8
8
|
from typing import Dict, Any
|
|
9
9
|
|
|
10
|
-
from .utils import IS_ARCH
|
|
11
|
-
from .system import (
|
|
12
|
-
get_system_info,
|
|
13
|
-
check_disk_space,
|
|
14
|
-
check_failed_services,
|
|
15
|
-
get_pacman_cache_stats
|
|
16
|
-
)
|
|
17
|
-
from .pacman import (
|
|
18
|
-
check_updates_dry_run,
|
|
19
|
-
list_orphan_packages,
|
|
20
|
-
check_database_freshness
|
|
21
|
-
)
|
|
22
|
-
from .news import check_critical_news
|
|
23
|
-
from .mirrors import check_mirrorlist_health
|
|
24
|
-
|
|
25
10
|
logger = logging.getLogger(__name__)
|
|
26
11
|
|
|
27
12
|
|
|
@@ -35,6 +20,20 @@ async def run_system_health_check() -> Dict[str, Any]:
|
|
|
35
20
|
Returns:
|
|
36
21
|
Dict with comprehensive health check results
|
|
37
22
|
"""
|
|
23
|
+
from .system import (
|
|
24
|
+
get_system_info,
|
|
25
|
+
check_disk_space,
|
|
26
|
+
check_failed_services,
|
|
27
|
+
get_pacman_cache_stats
|
|
28
|
+
)
|
|
29
|
+
from .pacman import (
|
|
30
|
+
check_updates_dry_run,
|
|
31
|
+
list_orphan_packages,
|
|
32
|
+
check_database_freshness
|
|
33
|
+
)
|
|
34
|
+
from .news import check_critical_news
|
|
35
|
+
from .mirrors import check_mirrorlist_health
|
|
36
|
+
|
|
38
37
|
logger.info("Starting comprehensive system health check")
|
|
39
38
|
|
|
40
39
|
health_report = {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|