qualys-mcp 2.1.8__tar.gz → 2.1.9__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.4
2
2
  Name: qualys-mcp
3
- Version: 2.1.8
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "qualys-mcp"
7
- version = "2.1.8"
7
+ version = "2.1.9"
8
8
  description = "MCP server for Qualys security APIs - natural language interaction with vulnerability, asset, and cloud security data"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -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['sample_asset'] = data['assetListData']['asset'][0]
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
 
File without changes
File without changes
File without changes