deepset-mcp 0.0.2__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.
Files changed (114) hide show
  1. deepset_mcp/__init__.py +0 -0
  2. deepset_mcp/agents/__init__.py +0 -0
  3. deepset_mcp/agents/debugging/__init__.py +0 -0
  4. deepset_mcp/agents/debugging/debugging_agent.py +37 -0
  5. deepset_mcp/agents/debugging/system_prompt.md +214 -0
  6. deepset_mcp/agents/generalist/__init__.py +0 -0
  7. deepset_mcp/agents/generalist/generalist_agent.py +38 -0
  8. deepset_mcp/agents/generalist/system_prompt.md +241 -0
  9. deepset_mcp/api/README.md +536 -0
  10. deepset_mcp/api/__init__.py +0 -0
  11. deepset_mcp/api/client.py +277 -0
  12. deepset_mcp/api/custom_components/__init__.py +0 -0
  13. deepset_mcp/api/custom_components/models.py +25 -0
  14. deepset_mcp/api/custom_components/protocols.py +17 -0
  15. deepset_mcp/api/custom_components/resource.py +56 -0
  16. deepset_mcp/api/exceptions.py +70 -0
  17. deepset_mcp/api/haystack_service/__init__.py +0 -0
  18. deepset_mcp/api/haystack_service/protocols.py +13 -0
  19. deepset_mcp/api/haystack_service/resource.py +55 -0
  20. deepset_mcp/api/indexes/__init__.py +0 -0
  21. deepset_mcp/api/indexes/models.py +63 -0
  22. deepset_mcp/api/indexes/protocols.py +53 -0
  23. deepset_mcp/api/indexes/resource.py +138 -0
  24. deepset_mcp/api/integrations/__init__.py +1 -0
  25. deepset_mcp/api/integrations/models.py +49 -0
  26. deepset_mcp/api/integrations/protocols.py +27 -0
  27. deepset_mcp/api/integrations/resource.py +57 -0
  28. deepset_mcp/api/pipeline/__init__.py +17 -0
  29. deepset_mcp/api/pipeline/log_level.py +9 -0
  30. deepset_mcp/api/pipeline/models.py +235 -0
  31. deepset_mcp/api/pipeline/protocols.py +83 -0
  32. deepset_mcp/api/pipeline/resource.py +378 -0
  33. deepset_mcp/api/pipeline_template/__init__.py +0 -0
  34. deepset_mcp/api/pipeline_template/models.py +56 -0
  35. deepset_mcp/api/pipeline_template/protocols.py +17 -0
  36. deepset_mcp/api/pipeline_template/resource.py +88 -0
  37. deepset_mcp/api/protocols.py +122 -0
  38. deepset_mcp/api/secrets/__init__.py +0 -0
  39. deepset_mcp/api/secrets/models.py +16 -0
  40. deepset_mcp/api/secrets/protocols.py +29 -0
  41. deepset_mcp/api/secrets/resource.py +112 -0
  42. deepset_mcp/api/shared_models.py +17 -0
  43. deepset_mcp/api/transport.py +336 -0
  44. deepset_mcp/api/user/__init__.py +0 -0
  45. deepset_mcp/api/user/protocols.py +11 -0
  46. deepset_mcp/api/user/resource.py +38 -0
  47. deepset_mcp/api/workspace/__init__.py +7 -0
  48. deepset_mcp/api/workspace/models.py +23 -0
  49. deepset_mcp/api/workspace/protocols.py +41 -0
  50. deepset_mcp/api/workspace/resource.py +94 -0
  51. deepset_mcp/benchmark/README.md +425 -0
  52. deepset_mcp/benchmark/__init__.py +1 -0
  53. deepset_mcp/benchmark/agent_configs/debugging_agent.yml +10 -0
  54. deepset_mcp/benchmark/agent_configs/generalist_agent.yml +6 -0
  55. deepset_mcp/benchmark/dp_validation_error_analysis/__init__.py +0 -0
  56. deepset_mcp/benchmark/dp_validation_error_analysis/eda.ipynb +757 -0
  57. deepset_mcp/benchmark/dp_validation_error_analysis/prepare_interaction_data.ipynb +167 -0
  58. deepset_mcp/benchmark/dp_validation_error_analysis/preprocessing_utils.py +213 -0
  59. deepset_mcp/benchmark/runner/__init__.py +0 -0
  60. deepset_mcp/benchmark/runner/agent_benchmark_runner.py +561 -0
  61. deepset_mcp/benchmark/runner/agent_loader.py +110 -0
  62. deepset_mcp/benchmark/runner/cli.py +39 -0
  63. deepset_mcp/benchmark/runner/cli_agent.py +373 -0
  64. deepset_mcp/benchmark/runner/cli_index.py +71 -0
  65. deepset_mcp/benchmark/runner/cli_pipeline.py +73 -0
  66. deepset_mcp/benchmark/runner/cli_tests.py +226 -0
  67. deepset_mcp/benchmark/runner/cli_utils.py +61 -0
  68. deepset_mcp/benchmark/runner/config.py +73 -0
  69. deepset_mcp/benchmark/runner/config_loader.py +64 -0
  70. deepset_mcp/benchmark/runner/interactive.py +140 -0
  71. deepset_mcp/benchmark/runner/models.py +203 -0
  72. deepset_mcp/benchmark/runner/repl.py +67 -0
  73. deepset_mcp/benchmark/runner/setup_actions.py +238 -0
  74. deepset_mcp/benchmark/runner/streaming.py +360 -0
  75. deepset_mcp/benchmark/runner/teardown_actions.py +196 -0
  76. deepset_mcp/benchmark/runner/tracing.py +21 -0
  77. deepset_mcp/benchmark/tasks/chat_rag_answers_wrong_format.yml +16 -0
  78. deepset_mcp/benchmark/tasks/documents_output_wrong.yml +13 -0
  79. deepset_mcp/benchmark/tasks/jinja_str_instead_of_complex_type.yml +11 -0
  80. deepset_mcp/benchmark/tasks/jinja_syntax_error.yml +11 -0
  81. deepset_mcp/benchmark/tasks/missing_output_mapping.yml +14 -0
  82. deepset_mcp/benchmark/tasks/no_query_input.yml +13 -0
  83. deepset_mcp/benchmark/tasks/pipelines/chat_agent_jinja_str.yml +141 -0
  84. deepset_mcp/benchmark/tasks/pipelines/chat_agent_jinja_syntax.yml +141 -0
  85. deepset_mcp/benchmark/tasks/pipelines/chat_rag_answers_wrong_format.yml +181 -0
  86. deepset_mcp/benchmark/tasks/pipelines/chat_rag_missing_output_mapping.yml +189 -0
  87. deepset_mcp/benchmark/tasks/pipelines/rag_documents_wrong_format.yml +193 -0
  88. deepset_mcp/benchmark/tasks/pipelines/rag_no_query_input.yml +191 -0
  89. deepset_mcp/benchmark/tasks/pipelines/standard_index.yml +167 -0
  90. deepset_mcp/initialize_embedding_model.py +12 -0
  91. deepset_mcp/main.py +133 -0
  92. deepset_mcp/prompts/deepset_copilot_prompt.md +271 -0
  93. deepset_mcp/prompts/deepset_debugging_agent.md +214 -0
  94. deepset_mcp/store.py +5 -0
  95. deepset_mcp/tool_factory.py +473 -0
  96. deepset_mcp/tools/__init__.py +0 -0
  97. deepset_mcp/tools/custom_components.py +52 -0
  98. deepset_mcp/tools/doc_search.py +83 -0
  99. deepset_mcp/tools/haystack_service.py +358 -0
  100. deepset_mcp/tools/haystack_service_models.py +97 -0
  101. deepset_mcp/tools/indexes.py +129 -0
  102. deepset_mcp/tools/model_protocol.py +16 -0
  103. deepset_mcp/tools/pipeline.py +335 -0
  104. deepset_mcp/tools/pipeline_template.py +116 -0
  105. deepset_mcp/tools/secrets.py +45 -0
  106. deepset_mcp/tools/tokonomics/__init__.py +73 -0
  107. deepset_mcp/tools/tokonomics/decorators.py +396 -0
  108. deepset_mcp/tools/tokonomics/explorer.py +347 -0
  109. deepset_mcp/tools/tokonomics/object_store.py +177 -0
  110. deepset_mcp/tools/workspace.py +61 -0
  111. deepset_mcp-0.0.2.dist-info/METADATA +288 -0
  112. deepset_mcp-0.0.2.dist-info/RECORD +114 -0
  113. deepset_mcp-0.0.2.dist-info/WHEEL +4 -0
  114. deepset_mcp-0.0.2.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,288 @@
1
+ Metadata-Version: 2.4
2
+ Name: deepset-mcp
3
+ Version: 0.0.2
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
+ Project-URL: Homepage, https://deepset.ai
6
+ Author-email: Mathis Lucka <mathis.lucka@deepset.ai>, Tanay Soni <tanay.soni@deepset.ai>
7
+ Keywords: Agents,Haystack,LLM,MCP,deepset,pipelines
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Requires-Python: >=3.11
18
+ Requires-Dist: fastapi
19
+ Requires-Dist: glom
20
+ Requires-Dist: httpx
21
+ Requires-Dist: mcp>=1.10.1
22
+ Requires-Dist: model2vec
23
+ Requires-Dist: numpy
24
+ Requires-Dist: pydantic>=2.0.0
25
+ Requires-Dist: pyyaml
26
+ Requires-Dist: rich
27
+ Provides-Extra: analysis
28
+ Requires-Dist: jupyterlab; extra == 'analysis'
29
+ Requires-Dist: matplotlib; extra == 'analysis'
30
+ Requires-Dist: pandas; extra == 'analysis'
31
+ Requires-Dist: seaborn; extra == 'analysis'
32
+ Provides-Extra: cli
33
+ Requires-Dist: anthropic-haystack>=2.7.0; extra == 'cli'
34
+ Requires-Dist: haystack-ai>=2.15.1; extra == 'cli'
35
+ Requires-Dist: langfuse-haystack; extra == 'cli'
36
+ Requires-Dist: mcp-haystack>=0.4.0; extra == 'cli'
37
+ Requires-Dist: typer; extra == 'cli'
38
+ Description-Content-Type: text/markdown
39
+
40
+ # MCP Server for the deepset AI platform
41
+
42
+ The deepset MCP server exposes tools that MCP clients like Claude or Cursor can use to interact with the deepset AI platform.
43
+
44
+ Agents can use these tools to:
45
+
46
+ - develop and iterate on Pipelines or Indexes
47
+ - debug Pipelines and Indexes
48
+ - search the deepset AI platform documentation
49
+
50
+ ## Contents
51
+
52
+ - [1. Installation](#installation)
53
+ - [1.1. Claude Desktop](#claude-desktop-app)
54
+ - [1.2. Other MCP Clients](#other-mcp-clients)
55
+ - [1.3. Advanced Configuration](#advanced-configuration)
56
+ - [2. Prompts](#prompts)
57
+ - [3. Use Cases](#use-cases)
58
+ - [3.1. Creating Pipelines](#creating-pipelines)
59
+ - [3.2. Debugging Pipelines](#debugging-pipelines)
60
+ - [4. CLI](#cli)
61
+
62
+
63
+
64
+
65
+
66
+ ![GIF showing CLI interaction with the MCP server](assets/deepset-mcp-3.gif)
67
+
68
+
69
+ ## Installation
70
+
71
+ ### Claude Desktop App
72
+
73
+ **Prerequisites:**
74
+ - [Claude Desktop App](https://claude.ai/download) needs to be installed
75
+ - You need to be on the Claude Pro, Team, Max, or Enterprise plan
76
+ - You need an installation of [Docker](https://docs.docker.com/desktop/) ([Go here](#using-uv-instead-of-docker) if you want to use `uv` instead of Docker)
77
+ - You need an [API key](https://docs.cloud.deepset.ai/docs/generate-api-key) for the deepset platform
78
+
79
+ **Steps:**
80
+ 1. Go to: `/Users/your_user/Library/Application Support/Claude` (Mac)
81
+ 2. Either open or create `claude_desktop_config.json`
82
+ 3. Add the following json as your config (or update your existing config if you are already using other MCP servers)
83
+
84
+ ```json
85
+ {
86
+ "mcpServers": {
87
+ "deepset": {
88
+ "command": "/usr/local/bin/docker",
89
+ "args": [
90
+ "run",
91
+ "-i",
92
+ "-e",
93
+ "DEEPSET_WORKSPACE",
94
+ "-e",
95
+ "DEEPSET_API_KEY",
96
+ "deepset/deepset-mcp-server:main"
97
+ ],
98
+ "env": {
99
+ "DEEPSET_WORKSPACE":"<WORKSPACE>",
100
+ "DEEPSET_API_KEY":"<DEEPSET_API_KEY>"
101
+ }
102
+
103
+ }
104
+ }
105
+ }
106
+ ```
107
+
108
+ 4. Quit and start the Claude Desktop App
109
+ 5. The deepset server should appear in the "Search and Tools" menu (this takes a few seconds as the Docker image needs to be downloaded and started)
110
+
111
+ ![Screenshot of the Search and Tools menu in the Claude Desktop App with deepset server running.](assets/claude_desktop_with_tools.png)
112
+
113
+
114
+
115
+ #### Using uv instead of Docker
116
+
117
+ Running the server with uv gives you faster startup time and consumes slightly less resources on your system.
118
+
119
+ 1. [Install uv](https://docs.astral.sh/uv/guides/install-python/) if you don't have it yet
120
+ 2. Put the following into your `claude_desktop_config.json`
121
+
122
+ ```python
123
+ {
124
+ "mcpServers": {
125
+ "deepset": {
126
+ "command": "uvx",
127
+ "args": [
128
+ "deepset-mcp"
129
+ ],
130
+ "env": {
131
+ "DEEPSET_WORKSPACE":"<WORKSPACE>",
132
+ "DEEPSET_API_KEY":"<DEEPSET_API_KEY>"
133
+ }
134
+
135
+ }
136
+ }
137
+ }
138
+ ```
139
+
140
+ This will load the [deepset-mcp package from PyPi](https://pypi.org/project/deepset-mcp/) and install it into a temporary virtual environment.
141
+
142
+ 3. Quit and start the Claude Desktop App
143
+
144
+
145
+
146
+ ### Other MCP Clients
147
+
148
+ `deepset-mcp` can be used with other MCP clients.
149
+
150
+ Here is where you need to configure `deepset-mcp` for:
151
+
152
+ - [Cursor](https://docs.cursor.com/context/mcp#using-mcp-json)
153
+ - [Claude Code](https://docs.anthropic.com/en/docs/claude-code/mcp#configure-mcp-servers)
154
+ - [Gemini CLI](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers)
155
+
156
+ Generally speaking, depending on your installation, you need to configure an MCP client with one of the following commands:
157
+
158
+ `uvx deepset-mcp --workspace your_workspace --api-key your_api_key`
159
+
160
+ If you installed the deepset-mcp package globally and added it to your `PATH`, you can just run:
161
+
162
+ `deepset-mcp --workspace your_workspace --api-key your_api_key`
163
+
164
+ The server runs locally using `stdio` to communicate with the client.
165
+
166
+ ### Advanced Configuration
167
+
168
+ #### Tool Selection
169
+
170
+ You can customize which tools the MCP server should expose.
171
+ Use the `´--tools`-option in your config to explicitly specify which tools should be exposed.
172
+
173
+ You can list available tools with: `deepset-mcp --list-tools`.
174
+
175
+ To only expose the `list_pipelines` and `get_pipeline` tools you would use the following command:
176
+
177
+ `deepset-mcp --tools list_pipelines get_pipeline`
178
+
179
+ For smooth operations, you should always expose the `get_from_object_store` and `get_slice_from_object_store` tools.
180
+
181
+
182
+ #### Allowing access to multiple workspaces
183
+
184
+ The basic configuration uses a hardcoded workspace which you pass in via the `DEEPSET_WORKSPACE` environment variable.
185
+ If you want to allow an agent to access resources from multiple workspaces, you can use `--workspace-mode explicit`
186
+ in your config.
187
+
188
+ For example:
189
+
190
+ ```json
191
+ {
192
+ "mcpServers": {
193
+ "deepset": {
194
+ "command": "uvx",
195
+ "args": [
196
+ "deepset-mcp",
197
+ "--workspace-mode",
198
+ "explicit"
199
+ ],
200
+ "env": {
201
+ "DEEPSET_API_KEY":"<DEEPSET_API_KEY>"
202
+ }
203
+
204
+ }
205
+ }
206
+ }
207
+ ```
208
+
209
+ An agent using the MCP server now has access to all workspaces that the API-key has access to. When interacting with most
210
+ resources, you will need to tell the agent what workspace it should use to perform an action. Instead of prompting it
211
+ with "list my pipelines", you would now have to prompt it with "list my pipelines in the staging workspace".
212
+
213
+
214
+ ## Prompts
215
+
216
+ All tools exposed through the MCP server have minimal prompts. Any Agent interacting with these tools benefits from an additional system prompt.
217
+
218
+ View the **recommended prompt** [here](src/deepset_mcp/prompts/deepset_debugging_agent.md).
219
+
220
+ This prompt is also exposed as the `deepset_recommended_prompt` on the MCP server.
221
+ In Claude Desktop, click `add from deepset` to add the prompt to your context.
222
+ A better way to add system prompts in Claude Desktop is through "Projects".
223
+
224
+ You can customize the system prompt to your specific needs.
225
+
226
+
227
+ ## Use Cases
228
+
229
+ The primary way to use the deepset MCP server is through an LLM that interacts with the deepset MCP tools in an agentic way.
230
+
231
+ ### Creating Pipelines
232
+
233
+ Tell the LLM about the type of pipeline you want to build. Creating new pipelines will work best if you use terminology
234
+ that is similar to what is used on the deepset AI platform or in Haystack.
235
+
236
+ Your prompts should be precise and specific.
237
+
238
+ Examples:
239
+
240
+ - "Build a RAG pipeline with hybrid retrieval that uses claude-sonnet-4 from Anthropic as the LLM."
241
+ - "Build an Agent that can iteratively search the web (deep research). Use SerperDev for web search and GPT-4o as the LLM."
242
+
243
+ You can also instruct the LLM to deploy pipelines, and it can issue search requests against pipelines to test them.
244
+
245
+ **Best Practices**
246
+
247
+ - be specific in your requests
248
+ - point the LLM to examples, if there is already a similar pipeline in your workspace, then ask it to look at it first,
249
+ if you have a template in mind, ask it to look at the template
250
+ - instruct the LLM to iterate with you locally before creating the pipeline, have it validate the drafts and then let it
251
+ create it once the pipeline is up to your standards
252
+
253
+
254
+ ### Debugging Pipelines
255
+
256
+ The `deepset-mcp` tools allow LLMs to debug pipelines on the deepset AI platform.
257
+ Primary tools used for debugging are:
258
+ - get_logs
259
+ - validate_pipeline
260
+ - search_pipeline
261
+ - search_pipeline_templates
262
+ - search_component_definition
263
+
264
+ You can ask the LLM to check the logs of a specific pipeline in case it is already deployed but has errors.
265
+ The LLM will find errors in the logs and devise strategies to fix them.
266
+ If your pipeline is not deployed yet, the LLM can autonomously validate it and fix validation errors.
267
+
268
+ ## CLI
269
+ You can use the MCP server as a Haystack Agent through a command-line interface.
270
+
271
+ Install with `uvx tool install "deepset-mcp[cli]"`.
272
+
273
+ Start the interactive CLI with:
274
+
275
+ `deepset agent chat`
276
+
277
+ You can set environment variables before starting the Agent via:
278
+
279
+ ```shell
280
+ export DEEPSET_API_KEY=your_key
281
+ export DEEPSET_WORKSPACE=your_workspace
282
+ ```
283
+
284
+ You can also provide an `.env` file using the `--env-file` option:
285
+
286
+ `deepset agent chat --env-file your/env/.file`
287
+
288
+ The agent will load environment variables from the file on startup.
@@ -0,0 +1,114 @@
1
+ deepset_mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ deepset_mcp/initialize_embedding_model.py,sha256=dgItYfml2LvEk_uxZJSga0aEstFUxTdqAvWWSpEZQEA,300
3
+ deepset_mcp/main.py,sha256=CLUSiUouY2NXvTo8rVyqvqiMsX4Fd2qhl8xF99Tge9Y,4321
4
+ deepset_mcp/store.py,sha256=rhjAZgisgdmc7cr61qdTmp0ZEXCYBKZL5faPmQgDFT4,116
5
+ deepset_mcp/tool_factory.py,sha256=euxZ2jXxe0SzzCUvG3aRIEr-n20irdUVZccU3yxDrEA,19312
6
+ deepset_mcp/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ deepset_mcp/agents/debugging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ deepset_mcp/agents/debugging/debugging_agent.py,sha256=MRr88Af8AMrof1WLlxanppusaahp41WFCHkfaxrX_iI,1646
9
+ deepset_mcp/agents/debugging/system_prompt.md,sha256=m5Y-n9cXQGm9BZ3wZ3N_hQmMjrXVfc1cqV8i8Kle5uU,9488
10
+ deepset_mcp/agents/generalist/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ deepset_mcp/agents/generalist/generalist_agent.py,sha256=1p_YPIhwtUKgeSrSs7YJNpg-exBWfD3yT1JjMKJNp2k,1373
12
+ deepset_mcp/agents/generalist/system_prompt.md,sha256=VjuqSs_im1mcPM-9l-sWTTf9QkeU6I2wMHuieEKl9O0,9090
13
+ deepset_mcp/api/README.md,sha256=h3xj8G2x1f5Z5EA6fBtBfNeVtXNwYnr291yPMmr2fQo,15576
14
+ deepset_mcp/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ deepset_mcp/api/client.py,sha256=fwBgctCX7f_qC_3Sieud85K5f9TRfrPcJsmFDAIKeCM,9816
16
+ deepset_mcp/api/exceptions.py,sha256=tjU1rJGFJsktFCIBYlwmb5zbFW2FgG7oFwUnPN-vBLw,2434
17
+ deepset_mcp/api/protocols.py,sha256=2d--LlTMoDCEkRU8hQ-oc_j9XqF0egQk-_iEuYgkGyE,4038
18
+ deepset_mcp/api/shared_models.py,sha256=hA2lEs4c_IrnAMCd-t0uGFczoRwZLNh6ErvM0ZnPG7M,411
19
+ deepset_mcp/api/transport.py,sha256=TpQiWobI-wgJk6QMx4WRU5uT-yNH1tk7yoDj7uOY6jU,10268
20
+ deepset_mcp/api/custom_components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ deepset_mcp/api/custom_components/models.py,sha256=zTQnKsWZMcKHqT1b2C6PdhyNnZXBwE_39Aildz7cPx4,610
22
+ deepset_mcp/api/custom_components/protocols.py,sha256=xmT78rdE3rKr2-MOI2683UldoMJrLrKg3cnGx97Mwk8,626
23
+ deepset_mcp/api/custom_components/resource.py,sha256=NpjZZB6hVXoctur6r1NmC8WonoMQ6j8FLW65hrBFSR8,1969
24
+ deepset_mcp/api/haystack_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ deepset_mcp/api/haystack_service/protocols.py,sha256=Evgump_8hTFgTXL5soxNVw0dRDxOJPbp2cp53bsOUKY,447
26
+ deepset_mcp/api/haystack_service/resource.py,sha256=762oG4ErpIDw0FG4cPaeakRyKngwfOW5DHSGMeQ6BX4,1966
27
+ deepset_mcp/api/indexes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ deepset_mcp/api/indexes/models.py,sha256=oUNUF4rLewmzWIYdH5BykounSzKydg70o3O6DbomsrY,2005
29
+ deepset_mcp/api/indexes/protocols.py,sha256=dv6wBvR09QoGvPmuhHnsMmtGZI43oCYXFTfIxw0gt5c,1821
30
+ deepset_mcp/api/indexes/resource.py,sha256=TlL3w3skRxJ4Q6a_v6rfVBRTlmja2A8Xb9qMW1xWKY4,5300
31
+ deepset_mcp/api/integrations/__init__.py,sha256=6Z7a9BkVdS5foGKfZCixkLfvyfKBz4mwwkfJA2BlN3k,44
32
+ deepset_mcp/api/integrations/models.py,sha256=S2AGeyGfxEBn8sc03J9klJBiwSY7Usdz3-PykNP4owc,1152
33
+ deepset_mcp/api/integrations/protocols.py,sha256=vBzrMm0i9DNLlGfsu98A3yqPuJ_0Z8lrd_pUfYoFvEE,793
34
+ deepset_mcp/api/integrations/resource.py,sha256=OStQZr6n4XvwgLiSOYjshrf6MKQpbRJ3NnegokzyjWo,1878
35
+ deepset_mcp/api/pipeline/__init__.py,sha256=6iSLtilOg7vIeS694jEDNYWhU73IS0zvu8e2s8fLkZw,332
36
+ deepset_mcp/api/pipeline/log_level.py,sha256=idNGH9KWaxIKobDApMsut9a8qUHrqdt73qoQ6NqDnEI,169
37
+ deepset_mcp/api/pipeline/models.py,sha256=JO5pvglyVNsXIIY1IFUnei2grarNoiPSEnAI3cD4OkE,7327
38
+ deepset_mcp/api/pipeline/protocols.py,sha256=6n9AiQkMAzHyr0Fs0JrhtYXcb5Adz1fI5DTOLCtym58,2469
39
+ deepset_mcp/api/pipeline/resource.py,sha256=Mov91pEDxeXoBtzQAsfvn8YVevnwjC2aJhey86we9bM,13989
40
+ deepset_mcp/api/pipeline_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ deepset_mcp/api/pipeline_template/models.py,sha256=OtbU3DIQZdMx65N0-yhFk8S26aPt8wUz2ZnKqIGI_sY,1422
42
+ deepset_mcp/api/pipeline_template/protocols.py,sha256=nyOAxgd1ZMrKfCYsOgjlo16xLvbUUWadWFhSuMa0S7k,644
43
+ deepset_mcp/api/pipeline_template/resource.py,sha256=h7Umn70zJ3Klt-GPqPkrBwXZ-R8hgHsQKkhZ4DAsm7w,3113
44
+ deepset_mcp/api/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ deepset_mcp/api/secrets/models.py,sha256=tDJKT4t_4PY-N1TwQki1yTJPp8zegeYWpL-KdqwOLGo,295
46
+ deepset_mcp/api/secrets/protocols.py,sha256=ooL-HAG-nE31c-LhITKkBdiR09ctnZn4vD3hBwlTYmA,804
47
+ deepset_mcp/api/secrets/resource.py,sha256=yucdBOPlfAbhbED4ShV1vN-YzyC4GcUOQ9n2PLCQbp8,3260
48
+ deepset_mcp/api/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ deepset_mcp/api/user/protocols.py,sha256=cYwQM81-JBqU1GI1tPvmg7UreL_3DJ-VXhxIL8fUNrI,302
50
+ deepset_mcp/api/user/resource.py,sha256=UxYAxyfQAdQyw_6sWIO5HtA74xFiCS9v--b8pUhDRic,1155
51
+ deepset_mcp/api/workspace/__init__.py,sha256=niRRgOpNNn4KO5xeT9gfSxfvJnal-xbevgyZmmfjqKo,255
52
+ deepset_mcp/api/workspace/models.py,sha256=tms1zCXVt2jccEo9V5Xy_Bx5DpB-q8azriAaIGNE_f8,479
53
+ deepset_mcp/api/workspace/protocols.py,sha256=koaIkC7vcoV0vHMmd0bpVlCGLBuQrTPuH5JGK62efiM,1204
54
+ deepset_mcp/api/workspace/resource.py,sha256=u0kLIAIldbfE5BLqQIEImfywawFuCyp57EJGzG9WVy0,2930
55
+ deepset_mcp/benchmark/README.md,sha256=DoSvMgdu6QXyxZsGck0yyQAI3c_oDB9Yf1yz0-kGSik,10430
56
+ deepset_mcp/benchmark/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
57
+ deepset_mcp/benchmark/agent_configs/debugging_agent.yml,sha256=97PBFX62ArduVbv0Z05WHVBausudsWA1uJSs0G_hGsk,296
58
+ deepset_mcp/benchmark/agent_configs/generalist_agent.yml,sha256=njM6JAXXszACYGYko86ycKQxAWsDE6whEbgmKInRhAU,198
59
+ deepset_mcp/benchmark/dp_validation_error_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ deepset_mcp/benchmark/dp_validation_error_analysis/eda.ipynb,sha256=HdXcQxvV3ngYFYFnmY72GKGVZrfW2Qqs2aqtkUZWdKQ,35870
61
+ deepset_mcp/benchmark/dp_validation_error_analysis/prepare_interaction_data.ipynb,sha256=CYxZsioWatmnqIuCTeb2D24QgrKij6r-BHeQ1zhHy_s,3972
62
+ deepset_mcp/benchmark/dp_validation_error_analysis/preprocessing_utils.py,sha256=RNwYdb8zv4bIB7f-SINi3PlBtARLtJHywnqm6M6GOMU,8608
63
+ deepset_mcp/benchmark/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ deepset_mcp/benchmark/runner/agent_benchmark_runner.py,sha256=ySxJkVQ349w_wrK-UjunChdTIJ3lHlveChI5SIllK7U,22273
65
+ deepset_mcp/benchmark/runner/agent_loader.py,sha256=VUaI0ldnPsg18o7qs1U5aoVBxKHs_ch65t0_1xB_PQI,3872
66
+ deepset_mcp/benchmark/runner/cli.py,sha256=4gGLa1ku_NafFCf41lnmCdVzDWi1IVWo_8AJQfYXYJU,952
67
+ deepset_mcp/benchmark/runner/cli_agent.py,sha256=29X0AEXfYTmTcVgiflQYn2sSG87dftAjav7VlyhdsqQ,16890
68
+ deepset_mcp/benchmark/runner/cli_index.py,sha256=6nAlXFvi8El8blxfWm9NoDPKjFmaNTJRnR8WxUsLszE,2775
69
+ deepset_mcp/benchmark/runner/cli_pipeline.py,sha256=QHNQegS3BbQJ4oRVNSyACIDjn9L46nQ79jMSvfZOEQY,2798
70
+ deepset_mcp/benchmark/runner/cli_tests.py,sha256=Al8y08zQKAEMlRD0m9BECcOTUU00SxhAm8gBjTdfX2g,8018
71
+ deepset_mcp/benchmark/runner/cli_utils.py,sha256=_KiUj7mPvfu7UOoZLK6-OTpySa97ay3S48OuVxtxrIg,2272
72
+ deepset_mcp/benchmark/runner/config.py,sha256=7rAmurgpsWuerPpVNYKiVfyTYn_iD5o0sP06o2fb1Mk,2807
73
+ deepset_mcp/benchmark/runner/config_loader.py,sha256=mQ1WKz7eiZn9_SSCKNdYiZfdJZBJNwsX0rYTYPCDnWQ,2061
74
+ deepset_mcp/benchmark/runner/interactive.py,sha256=KM-RoP2PJWAzd0Uq-HrFrTFZcegLnOo4HLDF2zdVBmU,5005
75
+ deepset_mcp/benchmark/runner/models.py,sha256=LjnZKyJ1d_A54Hig5dOBqz-9rsGKX23Q7DpQcgbpcng,8954
76
+ deepset_mcp/benchmark/runner/repl.py,sha256=ncz_IPrXG5plIq2s_82Et4qSsO9VxvcmQJZil2tX-y0,2852
77
+ deepset_mcp/benchmark/runner/setup_actions.py,sha256=0CH1K2TzV5RT9sYJ8Lv68FLZNYyrp0lJCmt-ha3plC0,8824
78
+ deepset_mcp/benchmark/runner/streaming.py,sha256=k5C63NhXYem8FzUl3mMkei_3GeqgcqHRlwpEG3zHyzE,14133
79
+ deepset_mcp/benchmark/runner/teardown_actions.py,sha256=0865u7RAgoUMmiwSmAb0iO1n3L33iqKsNW-ndvfgRz0,7202
80
+ deepset_mcp/benchmark/runner/tracing.py,sha256=lpX7Hfu9lLR9xcStAXG3nTjyPmHL0fByt9RjR_6-G9E,640
81
+ deepset_mcp/benchmark/tasks/chat_rag_answers_wrong_format.yml,sha256=brzCJXVWOobxJSGjbLPI_X26zDOnJFzdZNCweSNJwqw,647
82
+ deepset_mcp/benchmark/tasks/documents_output_wrong.yml,sha256=bjFnG84KRypSH60YGSmov5ZgErJmCzq93u-ic2t04xc,448
83
+ deepset_mcp/benchmark/tasks/jinja_str_instead_of_complex_type.yml,sha256=mz5uwHEfYOK59k34YnyaWfVLl2jdnYsQTqZXFF_ltGg,431
84
+ deepset_mcp/benchmark/tasks/jinja_syntax_error.yml,sha256=Y6DLynZVL-AWBCxI_Dam6mUcnqxKUgYfxVIJZCVvvfo,400
85
+ deepset_mcp/benchmark/tasks/missing_output_mapping.yml,sha256=g6Si-IZpglqr0g4f3qWcr3ofxVujeQUHg1pYZDRzPB4,458
86
+ deepset_mcp/benchmark/tasks/no_query_input.yml,sha256=L-Ayic0uF5dcKmax7R2acwHmhmo282HOGqnG2E9b93g,453
87
+ deepset_mcp/benchmark/tasks/pipelines/chat_agent_jinja_str.yml,sha256=TzReonPug1u09clJgZ6D9mb4QsFhWdJPIPXmFrat79s,5374
88
+ deepset_mcp/benchmark/tasks/pipelines/chat_agent_jinja_syntax.yml,sha256=BZmb-gXOQc480CyGfGnAS4u8v1xARSQWACurk_cXV6g,5370
89
+ deepset_mcp/benchmark/tasks/pipelines/chat_rag_answers_wrong_format.yml,sha256=FTpPcJfjLxzupVBqubdAzKMKsHyV4PyvYgr9vRFfg74,6572
90
+ deepset_mcp/benchmark/tasks/pipelines/chat_rag_missing_output_mapping.yml,sha256=V1c1YCT6wLVUPPMnI97SH4FIEmBZnkPtZmcyHe2fPjA,6923
91
+ deepset_mcp/benchmark/tasks/pipelines/rag_documents_wrong_format.yml,sha256=sjL3YlHPTLx0p4z7XV39caWO4Z9TtfirG9ttPZREZkY,7160
92
+ deepset_mcp/benchmark/tasks/pipelines/rag_no_query_input.yml,sha256=VHkBfpT9rYyxritu5DJi6WndqHR55gVAEwXw9SeK8wE,7048
93
+ deepset_mcp/benchmark/tasks/pipelines/standard_index.yml,sha256=K6pwluNNPFHMvqWS8NAs372zxNLI78LpiFVfFwqFQ14,6086
94
+ deepset_mcp/prompts/deepset_copilot_prompt.md,sha256=QctQQ4yQ9zl-uWv48dfr1DGhEKPvjsY82iFmRRCzbwM,9968
95
+ deepset_mcp/prompts/deepset_debugging_agent.md,sha256=m5Y-n9cXQGm9BZ3wZ3N_hQmMjrXVfc1cqV8i8Kle5uU,9488
96
+ deepset_mcp/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
+ deepset_mcp/tools/custom_components.py,sha256=fl0HYEoX9a_yaDOJ8zrAeetnm43P9zkprlYaa_j16FI,1844
98
+ deepset_mcp/tools/doc_search.py,sha256=E3_-T-WCzvBXEDGjC3Y_qyG3dHUhWUPWgt_34aTn5xM,3654
99
+ deepset_mcp/tools/haystack_service.py,sha256=bR8lL4cWMjJjM6gxpwdUt5xCJ01YMUrRKiG7s2lO7Ts,15050
100
+ deepset_mcp/tools/haystack_service_models.py,sha256=eizThOPKfiUo9ayRAk-sbuSCoY_6gL0vEnv2MwVEGZY,2336
101
+ deepset_mcp/tools/indexes.py,sha256=PSC0SLzo97x86LRwQuivz22_fPGUrBA8t6a8rE1b8V4,5306
102
+ deepset_mcp/tools/model_protocol.py,sha256=NiEo8YG2RCFJdU8GApsmGCq3ZzrbAylP_BD6C_-UaNI,418
103
+ deepset_mcp/tools/pipeline.py,sha256=mcbNoQw2l6QMkmfRvMF4PUoQq4KXxIEwHjiGpj46aGw,14732
104
+ deepset_mcp/tools/pipeline_template.py,sha256=zqn2OeDaLz3ePS_dWDLDWCc3rZ2904CkOq8J3_b0zdw,4822
105
+ deepset_mcp/tools/secrets.py,sha256=yDZc4WHFvByG8jxBpyT5iuXx5W-88xabdrk-Fv7O2og,1773
106
+ deepset_mcp/tools/workspace.py,sha256=JAyUKI_BMGn9FnmoAqmnnRKsTXnSnPuZmuAB3JgzuMY,2729
107
+ deepset_mcp/tools/tokonomics/__init__.py,sha256=QFDYoHPEpfaJ9fr5kfNJ1QXykDFzfy91i-wuqJLqrN0,1958
108
+ deepset_mcp/tools/tokonomics/decorators.py,sha256=msJNho6p6ZnZ5CNjPLbt0RM0CLz8gUzzQCWYT30M10Q,14833
109
+ deepset_mcp/tools/tokonomics/explorer.py,sha256=sSmvXesfl5GdJGiWgCj5ktTOub097pBhhF26BqqT_ig,12880
110
+ deepset_mcp/tools/tokonomics/object_store.py,sha256=OtmVal_6hJPb5R-3mAGLmgAblgM05jdw3f1R7PvvdP0,6415
111
+ deepset_mcp-0.0.2.dist-info/METADATA,sha256=1qZb1cW-hK_-DSnREKiaWDsPS45j0dxxiDgkUqC9Xpw,9658
112
+ deepset_mcp-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
113
+ deepset_mcp-0.0.2.dist-info/entry_points.txt,sha256=gm-y9dhJVhzslA3nh8W3tofranX76WAw_ATxWbzAhoQ,101
114
+ deepset_mcp-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ deepset = deepset_mcp.benchmark.runner.cli:app
3
+ deepset-mcp = deepset_mcp.main:main