arch-ops-server 0.1.0__tar.gz → 0.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: arch-ops-server
3
- Version: 0.1.0
3
+ Version: 0.1.1
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 = "0.1.0"
3
+ version = "0.1.1"
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" }
@@ -376,7 +376,7 @@ async def call_tool(name: str, arguments: dict[str, Any]) -> list[TextContent |
376
376
 
377
377
  elif name == "analyze_pkgbuild_safety":
378
378
  pkgbuild_content = arguments["pkgbuild_content"]
379
- result = await analyze_pkgbuild_safety(pkgbuild_content)
379
+ result = analyze_pkgbuild_safety(pkgbuild_content)
380
380
  return [TextContent(type="text", text=json.dumps(result, indent=2))]
381
381
 
382
382
  elif name == "analyze_package_metadata_risk":
@@ -514,7 +514,7 @@ async def get_prompt(name: str, arguments: dict[str, str]) -> GetPromptResult:
514
514
 
515
515
  # Analyze both metadata and PKGBUILD
516
516
  metadata_risk = await analyze_package_metadata_risk(package_info)
517
- pkgbuild_safety = await analyze_pkgbuild_safety(pkgbuild_content)
517
+ pkgbuild_safety = analyze_pkgbuild_safety(pkgbuild_content)
518
518
 
519
519
  audit_summary = f"""
520
520
  # Security Audit Report for {package_name}