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