deepset-mcp 0.0.9__py3-none-any.whl → 0.0.10__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.
@@ -193,8 +193,15 @@ def apply_client(
193
193
  ctx_param = inspect.Parameter(name="ctx", kind=inspect.Parameter.KEYWORD_ONLY, annotation=Context)
194
194
  new_params.append(ctx_param)
195
195
  client_wrapper_with_context.__signature__ = original_sig.replace(parameters=new_params) # type: ignore
196
+
197
+ # Remove client from docstring
196
198
  client_wrapper_with_context.__doc__ = remove_params_from_docstring(base_func.__doc__, {"client"})
197
199
 
200
+ # Remove client from annotations and add ctx
201
+ new_annotations = {k: v for k, v in base_func.__annotations__.items() if k != "client"}
202
+ new_annotations["ctx"] = Context
203
+ client_wrapper_with_context.__annotations__ = new_annotations
204
+
198
205
  return client_wrapper_with_context
199
206
  else:
200
207
 
@@ -214,6 +221,10 @@ def apply_client(
214
221
  # Remove client from docstring
215
222
  client_wrapper_without_context.__doc__ = remove_params_from_docstring(base_func.__doc__, {"client"})
216
223
 
224
+ # Remove client from annotations
225
+ new_annotations = {k: v for k, v in base_func.__annotations__.items() if k != "client"}
226
+ client_wrapper_without_context.__annotations__ = new_annotations
227
+
217
228
  return client_wrapper_without_context
218
229
 
219
230
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepset-mcp
3
- Version: 0.0.9
3
+ Version: 0.0.10
4
4
  Summary: Collection of MCP tools and Agents to work with the deepset AI platform. Create, debug or learn about pipelines on the platform. Useable from the CLI, Cursor, Claude Code, or other MCP clients.
5
5
  Project-URL: Homepage, https://deepset.ai
6
6
  Author-email: Mathis Lucka <mathis.lucka@deepset.ai>, Tanay Soni <tanay.soni@deepset.ai>
@@ -46,7 +46,7 @@ deepset_mcp/api/workspace/resource.py,sha256=v9FzIVLKxho_FwagR8Uosag0FjvKsISw_iY
46
46
  deepset_mcp/mcp/__init__.py,sha256=vlOwzaPVEJN8dbDvUE-v_kd3q9oQ7f9R6eRD3PXynFU,383
47
47
  deepset_mcp/mcp/server.py,sha256=zvX_NDmL5Hj2Nby48lAvecvsagrW-Gf-LAA_cSmeLr4,6308
48
48
  deepset_mcp/mcp/store.py,sha256=xfnQbzvAlM8kCH6tq7XbC0PUkf4ciyEmre7GF5mOqaY,1872
49
- deepset_mcp/mcp/tool_factory.py,sha256=LBJXs_uZtVqYL6Zf-MJdY_Yn4tdzcnUl51Yb69qPO54,14757
49
+ deepset_mcp/mcp/tool_factory.py,sha256=Xn4kVyugYg09iGPfvOiLYLZG92-y64lZ60SyDu2O24I,15269
50
50
  deepset_mcp/mcp/tool_models.py,sha256=HVxV-VqsvO5Cit1qAXaZhIYaY956HMILbjYnhTlCFHQ,2018
51
51
  deepset_mcp/mcp/tool_registry.py,sha256=M84RpKEBCjc8Zvbs-6k82QlbzMQIavPDf5lFKe-OGyg,9149
52
52
  deepset_mcp/prompts/deepset_copilot_prompt.md,sha256=QctQQ4yQ9zl-uWv48dfr1DGhEKPvjsY82iFmRRCzbwM,9968
@@ -67,8 +67,8 @@ deepset_mcp/tools/pipeline.py,sha256=Cum1BIBtvl-JXcyH2zEZ48SngKJuMXGmDNP8ZKFW_Dc
67
67
  deepset_mcp/tools/pipeline_template.py,sha256=KgIL5UnXW0I1v6EDOVZE9LgF1bNzixwvRwwBv4B-1WU,5852
68
68
  deepset_mcp/tools/secrets.py,sha256=1kZ0vfbmIPooQxaO5Bv6UtCYH8KDcziNGTUq-HAy4I8,4712
69
69
  deepset_mcp/tools/workspace.py,sha256=01R3sPI7sjNoD173XhTfYHIG0Iv7La6GlBrZXHeUb9s,2827
70
- deepset_mcp-0.0.9.dist-info/METADATA,sha256=7-pdRlhqMvfWwoos3jluxz61CjjZ7PeVxN7hr8nLIUI,3398
71
- deepset_mcp-0.0.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
- deepset_mcp-0.0.9.dist-info/entry_points.txt,sha256=0X0vMrNLUbQYq02bA4DUgsFuEAbS2bAaGO4jrAMtRk0,53
73
- deepset_mcp-0.0.9.dist-info/licenses/LICENSE,sha256=k0H2cOtcgKczLsEN2Ju03DoAb8jhBSlp8WzWYlYlDvc,11342
74
- deepset_mcp-0.0.9.dist-info/RECORD,,
70
+ deepset_mcp-0.0.10.dist-info/METADATA,sha256=pKWXeSBorHJaAnWFvCpKgBUwPmAfKxgJuayNS4_XxeA,3399
71
+ deepset_mcp-0.0.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
+ deepset_mcp-0.0.10.dist-info/entry_points.txt,sha256=0X0vMrNLUbQYq02bA4DUgsFuEAbS2bAaGO4jrAMtRk0,53
73
+ deepset_mcp-0.0.10.dist-info/licenses/LICENSE,sha256=k0H2cOtcgKczLsEN2Ju03DoAb8jhBSlp8WzWYlYlDvc,11342
74
+ deepset_mcp-0.0.10.dist-info/RECORD,,