deepset-mcp 0.0.10__py3-none-any.whl → 0.0.11__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.
- deepset_mcp/main.py +19 -0
- {deepset_mcp-0.0.10.dist-info → deepset_mcp-0.0.11.dist-info}/METADATA +1 -1
- {deepset_mcp-0.0.10.dist-info → deepset_mcp-0.0.11.dist-info}/RECORD +6 -6
- {deepset_mcp-0.0.10.dist-info → deepset_mcp-0.0.11.dist-info}/WHEEL +0 -0
- {deepset_mcp-0.0.10.dist-info → deepset_mcp-0.0.11.dist-info}/entry_points.txt +0 -0
- {deepset_mcp-0.0.10.dist-info → deepset_mcp-0.0.11.dist-info}/licenses/LICENSE +0 -0
deepset_mcp/main.py
CHANGED
|
@@ -112,6 +112,20 @@ def main(
|
|
|
112
112
|
"Can also be set via OBJECT_STORE_TTL environment variable.",
|
|
113
113
|
),
|
|
114
114
|
] = 600,
|
|
115
|
+
host: Annotated[
|
|
116
|
+
str,
|
|
117
|
+
typer.Option(
|
|
118
|
+
"--host",
|
|
119
|
+
help="Host address to bind the server to. Default: 0.0.0.0",
|
|
120
|
+
),
|
|
121
|
+
] = "0.0.0.0",
|
|
122
|
+
port: Annotated[
|
|
123
|
+
int | None,
|
|
124
|
+
typer.Option(
|
|
125
|
+
"--port",
|
|
126
|
+
help="Port number to bind the server to. If not specified, uses default port for the transport.",
|
|
127
|
+
),
|
|
128
|
+
] = None,
|
|
115
129
|
) -> None:
|
|
116
130
|
"""
|
|
117
131
|
Run the Deepset MCP server.
|
|
@@ -130,6 +144,8 @@ def main(
|
|
|
130
144
|
:param object_store_backend: Object store backend type ('memory' or 'redis')
|
|
131
145
|
:param object_store_redis_url: Redis connection URL (required if backend='redis')
|
|
132
146
|
:param object_store_ttl: TTL in seconds for stored objects
|
|
147
|
+
:param host: Host address to bind the server to
|
|
148
|
+
:param port: Port number to bind the server to
|
|
133
149
|
"""
|
|
134
150
|
# Handle --list-tools flag early
|
|
135
151
|
if list_tools:
|
|
@@ -187,6 +203,9 @@ def main(
|
|
|
187
203
|
object_store_redis_url=redis_url,
|
|
188
204
|
object_store_ttl=ttl,
|
|
189
205
|
)
|
|
206
|
+
mcp.settings.host = host
|
|
207
|
+
if port is not None:
|
|
208
|
+
mcp.settings.port = port
|
|
190
209
|
|
|
191
210
|
mcp.run(transport=transport.value)
|
|
192
211
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepset-mcp
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
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>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
deepset_mcp/__init__.py,sha256=GntT_omkLLvCn5OI1QzIhcZWUwUZ9aIF0H9LBwxiBqk,380
|
|
2
2
|
deepset_mcp/config.py,sha256=IFSvwafyr1yj4iIcND1NmfTgrlZa8zFzWVmELRbsLPs,2085
|
|
3
3
|
deepset_mcp/initialize_embedding_model.py,sha256=5Zcccrw3ItHpt0rGgM-3WdqV-QQaiv79nxBHhDSwNwA,411
|
|
4
|
-
deepset_mcp/main.py,sha256=
|
|
4
|
+
deepset_mcp/main.py,sha256=D7ijIaMiLav-_uvMTy0l7-B0MzEjUqdZwvUEA_AnWQs,7383
|
|
5
5
|
deepset_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
deepset_mcp/api/__init__.py,sha256=_iMrT0gj6bc5wVYt_lh9uAB1ygsC8APzQ04DMgr2b54,184
|
|
7
7
|
deepset_mcp/api/client.py,sha256=kj2zOdzlPgxUW6dr1AeDERoAtWF7UbtfGAQcy3j7AuQ,10868
|
|
@@ -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.
|
|
71
|
-
deepset_mcp-0.0.
|
|
72
|
-
deepset_mcp-0.0.
|
|
73
|
-
deepset_mcp-0.0.
|
|
74
|
-
deepset_mcp-0.0.
|
|
70
|
+
deepset_mcp-0.0.11.dist-info/METADATA,sha256=TY-iiXoUyyj5bcB1i0hKks3NUiHzgu4V1JT5_dVthfg,3399
|
|
71
|
+
deepset_mcp-0.0.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
72
|
+
deepset_mcp-0.0.11.dist-info/entry_points.txt,sha256=0X0vMrNLUbQYq02bA4DUgsFuEAbS2bAaGO4jrAMtRk0,53
|
|
73
|
+
deepset_mcp-0.0.11.dist-info/licenses/LICENSE,sha256=k0H2cOtcgKczLsEN2Ju03DoAb8jhBSlp8WzWYlYlDvc,11342
|
|
74
|
+
deepset_mcp-0.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|