suse-documentation-mcp-server 0.11.0__tar.gz → 0.13.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: suse-documentation-mcp-server
3
- Version: 0.11.0
3
+ Version: 0.13.0
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "suse-documentation-mcp-server"
3
- version = "0.11.0"
3
+ version = "0.13.0"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -74,7 +74,7 @@ def get_web_search_results_from_oi(query):
74
74
  return combined_response
75
75
 
76
76
  @mcp.tool()
77
- async def get_web_search_results(input_data: Any) -> str:
77
+ async def get_web_search_results(queries: Any) -> str:
78
78
  """
79
79
  Search SUSE documentation using web search and return results.
80
80
 
@@ -93,6 +93,7 @@ async def get_web_search_results(input_data: Any) -> str:
93
93
  Returns:
94
94
  str: Combined content from the search results, cleaned and formatted
95
95
  """
96
+ print("Entered get_web_search_results:", query)
96
97
  try:
97
98
  # Normalize input to extract the query string
98
99
  if isinstance(input_data, str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: suse-documentation-mcp-server
3
- Version: 0.11.0
3
+ Version: 0.13.0
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown