arch-ops-server 3.0.1__tar.gz → 3.1.0__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.0.1 → arch_ops_server-3.1.0}/PKG-INFO +8 -4
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/README.md +7 -3
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/pyproject.toml +1 -1
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/__init__.py +1 -1
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/server.py +381 -42
- arch_ops_server-3.1.0/src/arch_ops_server/tool_metadata.py +627 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/aur.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/config.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/http_server.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/logs.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/mirrors.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/news.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/pacman.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/py.typed +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/system.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/src/arch_ops_server/utils.py +0 -0
- {arch_ops_server-3.0.1 → arch_ops_server-3.1.0}/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.0
|
|
3
|
+
Version: 3.1.0
|
|
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
|
|
@@ -36,6 +36,8 @@ Description-Content-Type: text/markdown
|
|
|
36
36
|
|
|
37
37
|
# Arch Linux MCP Server
|
|
38
38
|
|
|
39
|
+
[](https://pepy.tech/projects/arch-ops-server)
|
|
40
|
+
|
|
39
41
|
<a href="https://glama.ai/mcp/servers/@nihalxkumar/arch-mcp">
|
|
40
42
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@nihalxkumar/arch-mcp/badge" />
|
|
41
43
|
</a>
|
|
@@ -247,7 +249,9 @@ Contributions are greatly appreciated. Please feel free to submit a pull request
|
|
|
247
249
|
|
|
248
250
|
This project is dual-licensed under your choice of:
|
|
249
251
|
|
|
250
|
-
- **[GPL-3.0-only](https://www.gnu.org/licenses/gpl-3.0.en.html)** - See [LICENSE-GPL](LICENSE-GPL)
|
|
251
|
-
- **[MIT License](https://opensource.org/licenses/MIT)** - See [LICENSE-MIT](LICENSE-MIT)
|
|
252
|
+
- **[GPL-3.0-only](https://www.gnu.org/licenses/gpl-3.0.en.html)** - For those who prefer strong copyleft protections. See [LICENSE-GPL](LICENSE-GPL)
|
|
253
|
+
- **[MIT License](https://opensource.org/licenses/MIT)** - For broader compatibility and adoption, including use in proprietary software and compatibility with platforms like Docker MCP Catalog. See [LICENSE-MIT](LICENSE-MIT)
|
|
254
|
+
|
|
255
|
+
You may use this software under the terms of either license. When redistributing or modifying this software, you may choose which license to apply.
|
|
252
256
|
|
|
253
|
-
|
|
257
|
+
By contributing to this project, you agree that your contributions will be licensed under both licenses.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Arch Linux MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://pepy.tech/projects/arch-ops-server)
|
|
4
|
+
|
|
3
5
|
<a href="https://glama.ai/mcp/servers/@nihalxkumar/arch-mcp">
|
|
4
6
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@nihalxkumar/arch-mcp/badge" />
|
|
5
7
|
</a>
|
|
@@ -211,7 +213,9 @@ Contributions are greatly appreciated. Please feel free to submit a pull request
|
|
|
211
213
|
|
|
212
214
|
This project is dual-licensed under your choice of:
|
|
213
215
|
|
|
214
|
-
- **[GPL-3.0-only](https://www.gnu.org/licenses/gpl-3.0.en.html)** - See [LICENSE-GPL](LICENSE-GPL)
|
|
215
|
-
- **[MIT License](https://opensource.org/licenses/MIT)** - See [LICENSE-MIT](LICENSE-MIT)
|
|
216
|
+
- **[GPL-3.0-only](https://www.gnu.org/licenses/gpl-3.0.en.html)** - For those who prefer strong copyleft protections. See [LICENSE-GPL](LICENSE-GPL)
|
|
217
|
+
- **[MIT License](https://opensource.org/licenses/MIT)** - For broader compatibility and adoption, including use in proprietary software and compatibility with platforms like Docker MCP Catalog. See [LICENSE-MIT](LICENSE-MIT)
|
|
218
|
+
|
|
219
|
+
You may use this software under the terms of either license. When redistributing or modifying this software, you may choose which license to apply.
|
|
216
220
|
|
|
217
|
-
|
|
221
|
+
By contributing to this project, you agree that your contributions will be licensed under both licenses.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "arch-ops-server"
|
|
3
|
-
version = "3.0
|
|
3
|
+
version = "3.1.0"
|
|
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.0
|
|
9
|
+
__version__ = "3.1.0"
|
|
10
10
|
|
|
11
11
|
from .wiki import search_wiki, get_wiki_page, get_wiki_page_as_text
|
|
12
12
|
from .aur import (
|