qualys-mcp 2.1.8__py3-none-any.whl → 2.1.9__py3-none-any.whl
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.
- {qualys_mcp-2.1.8.dist-info → qualys_mcp-2.1.9.dist-info}/METADATA +1 -1
- qualys_mcp-2.1.9.dist-info/RECORD +6 -0
- qualys_mcp.py +4 -1
- qualys_mcp-2.1.8.dist-info/RECORD +0 -6
- {qualys_mcp-2.1.8.dist-info → qualys_mcp-2.1.9.dist-info}/WHEEL +0 -0
- {qualys_mcp-2.1.8.dist-info → qualys_mcp-2.1.9.dist-info}/entry_points.txt +0 -0
- {qualys_mcp-2.1.8.dist-info → qualys_mcp-2.1.9.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qualys-mcp
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.9
|
|
4
4
|
Summary: MCP server for Qualys security APIs - natural language interaction with vulnerability, asset, and cloud security data
|
|
5
5
|
Project-URL: Homepage, https://github.com/nelssec/qualys-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/nelssec/qualys-mcp
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
qualys_mcp.py,sha256=02_b4cTUleP_mRED8Lqt-VjNXySeS1bFvLSxDW-p4Gk,32657
|
|
2
|
+
qualys_mcp-2.1.9.dist-info/METADATA,sha256=UwrWyZQDlNSWulDE5X-OZUHa5sr-v8XA_SoHNwbJ0SA,3295
|
|
3
|
+
qualys_mcp-2.1.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
4
|
+
qualys_mcp-2.1.9.dist-info/entry_points.txt,sha256=Dc8X0AhJDjGaZOJ0SNpWDWjEX4sYzrYa9FZEbggX0Rs,47
|
|
5
|
+
qualys_mcp-2.1.9.dist-info/licenses/LICENSE,sha256=dW3nC4AX_VbxPAgneSDR-miZPiHgAYw5JhPtdbUEt_E,1091
|
|
6
|
+
qualys_mcp-2.1.9.dist-info/RECORD,,
|
qualys_mcp.py
CHANGED
|
@@ -862,7 +862,10 @@ def debug_api(endpoint: str = "eol") -> dict:
|
|
|
862
862
|
result['has_assetListData'] = 'assetListData' in data
|
|
863
863
|
result['asset_count'] = len(data.get('assetListData', {}).get('asset', []))
|
|
864
864
|
if result['asset_count'] > 0:
|
|
865
|
-
result['
|
|
865
|
+
result['sample_asset_raw'] = data['assetListData']['asset'][0]
|
|
866
|
+
parsed = get_eol_assets("EOL,EOL/EOS,EOS", 5)
|
|
867
|
+
result['parsed_count'] = len(parsed)
|
|
868
|
+
result['sample_asset_parsed'] = parsed[0] if parsed else None
|
|
866
869
|
except Exception as e:
|
|
867
870
|
result['error'] = str(e)
|
|
868
871
|
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
qualys_mcp.py,sha256=_mcV-BunK0Y74D5nrQaVIfBdrVyKQMXB8Cc3RlpWI8k,32448
|
|
2
|
-
qualys_mcp-2.1.8.dist-info/METADATA,sha256=u5F5XF6o_5hVxfdm2IFMujfvjer6qPOZTIePi11ID4w,3295
|
|
3
|
-
qualys_mcp-2.1.8.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
4
|
-
qualys_mcp-2.1.8.dist-info/entry_points.txt,sha256=Dc8X0AhJDjGaZOJ0SNpWDWjEX4sYzrYa9FZEbggX0Rs,47
|
|
5
|
-
qualys_mcp-2.1.8.dist-info/licenses/LICENSE,sha256=dW3nC4AX_VbxPAgneSDR-miZPiHgAYw5JhPtdbUEt_E,1091
|
|
6
|
-
qualys_mcp-2.1.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|