mcp-use 1.3.10__py3-none-any.whl → 1.3.12__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.
Potentially problematic release.
This version of mcp-use might be problematic. Click here for more details.
- mcp_use/adapters/langchain_adapter.py +9 -52
- mcp_use/agents/mcpagent.py +88 -37
- mcp_use/agents/prompts/templates.py +1 -10
- mcp_use/agents/remote.py +154 -128
- mcp_use/auth/__init__.py +6 -0
- mcp_use/auth/bearer.py +17 -0
- mcp_use/auth/oauth.py +625 -0
- mcp_use/auth/oauth_callback.py +214 -0
- mcp_use/client.py +25 -1
- mcp_use/config.py +7 -2
- mcp_use/connectors/base.py +25 -12
- mcp_use/connectors/http.py +135 -27
- mcp_use/connectors/sandbox.py +12 -3
- mcp_use/connectors/stdio.py +11 -3
- mcp_use/connectors/websocket.py +15 -6
- mcp_use/exceptions.py +31 -0
- mcp_use/middleware/__init__.py +50 -0
- mcp_use/middleware/logging.py +31 -0
- mcp_use/middleware/metrics.py +314 -0
- mcp_use/middleware/middleware.py +262 -0
- mcp_use/task_managers/base.py +13 -23
- mcp_use/task_managers/sse.py +5 -0
- mcp_use/task_managers/streamable_http.py +5 -0
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.12.dist-info}/METADATA +21 -25
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.12.dist-info}/RECORD +28 -19
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.12.dist-info}/WHEEL +0 -0
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.12.dist-info}/entry_points.txt +0 -0
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.12.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,6 +8,7 @@ that ensures proper task isolation and resource cleanup.
|
|
|
8
8
|
from datetime import timedelta
|
|
9
9
|
from typing import Any
|
|
10
10
|
|
|
11
|
+
import httpx
|
|
11
12
|
from mcp.client.streamable_http import streamablehttp_client
|
|
12
13
|
|
|
13
14
|
from ..logging import logger
|
|
@@ -28,6 +29,7 @@ class StreamableHttpConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
28
29
|
headers: dict[str, str] | None = None,
|
|
29
30
|
timeout: float = 5,
|
|
30
31
|
read_timeout: float = 60 * 5,
|
|
32
|
+
auth: httpx.Auth | None = None,
|
|
31
33
|
):
|
|
32
34
|
"""Initialize a new streamable HTTP connection manager.
|
|
33
35
|
|
|
@@ -36,12 +38,14 @@ class StreamableHttpConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
36
38
|
headers: Optional HTTP headers
|
|
37
39
|
timeout: Timeout for HTTP operations in seconds
|
|
38
40
|
read_timeout: Timeout for HTTP read operations in seconds
|
|
41
|
+
auth: Optional httpx.Auth instance for authentication
|
|
39
42
|
"""
|
|
40
43
|
super().__init__()
|
|
41
44
|
self.url = url
|
|
42
45
|
self.headers = headers or {}
|
|
43
46
|
self.timeout = timedelta(seconds=timeout)
|
|
44
47
|
self.read_timeout = timedelta(seconds=read_timeout)
|
|
48
|
+
self.auth = auth
|
|
45
49
|
self._http_ctx = None
|
|
46
50
|
|
|
47
51
|
async def _establish_connection(self) -> tuple[Any, Any]:
|
|
@@ -59,6 +63,7 @@ class StreamableHttpConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
59
63
|
headers=self.headers,
|
|
60
64
|
timeout=self.timeout,
|
|
61
65
|
sse_read_timeout=self.read_timeout,
|
|
66
|
+
auth=self.auth,
|
|
62
67
|
)
|
|
63
68
|
|
|
64
69
|
# Enter the context manager. Ignoring the session id callback
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-use
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.12
|
|
4
4
|
Summary: MCP Library for LLMs
|
|
5
5
|
Author-email: Pietro Zullo <pietro.zullo@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,14 +15,16 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
16
|
Requires-Python: >=3.11
|
|
17
17
|
Requires-Dist: aiohttp>=3.9.0
|
|
18
|
+
Requires-Dist: authlib>=1.6.3
|
|
18
19
|
Requires-Dist: jsonschema-pydantic>=0.1.0
|
|
19
20
|
Requires-Dist: langchain>=0.1.0
|
|
20
21
|
Requires-Dist: mcp>=1.10.0
|
|
21
22
|
Requires-Dist: posthog>=4.8.0
|
|
22
|
-
Requires-Dist: pydantic
|
|
23
|
+
Requires-Dist: pydantic-core==2.33.2
|
|
24
|
+
Requires-Dist: pydantic==2.11.10
|
|
23
25
|
Requires-Dist: python-dotenv>=1.0.0
|
|
24
26
|
Requires-Dist: scarf-sdk>=0.1.0
|
|
25
|
-
Requires-Dist: websockets>=
|
|
27
|
+
Requires-Dist: websockets>=15.0
|
|
26
28
|
Provides-Extra: anthropic
|
|
27
29
|
Requires-Dist: langchain-anthropic; extra == 'anthropic'
|
|
28
30
|
Provides-Extra: dev
|
|
@@ -52,12 +54,6 @@ Description-Content-Type: text/markdown
|
|
|
52
54
|
</picture>
|
|
53
55
|
</div>
|
|
54
56
|
|
|
55
|
-
<div align="center">
|
|
56
|
-
<h2>🎉 <strong>We're LIVE on Product Hunt!</strong> 🎉</h2>
|
|
57
|
-
<p><strong>Support us today and help us reach #1!</strong></p>
|
|
58
|
-
<a href="https://www.producthunt.com/products/mcp-use?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-mcp-use" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1002629&theme=neutral&t=1754609432704" alt="mcp-use - Open source SDK and infra for MCP servers & agents | Product Hunt" style="width: 220px; height: 54px;" width="250" height="54" /></a>
|
|
59
|
-
<p>👆 <em>Click to upvote and leave a comment!</em></p>
|
|
60
|
-
</div>
|
|
61
57
|
|
|
62
58
|
<h1 align="center">🚀 Create MCP Clients and Agents</h1>
|
|
63
59
|
<p align="center">
|
|
@@ -96,7 +92,7 @@ Description-Content-Type: text/markdown
|
|
|
96
92
|
|
|
97
93
|
| Supports | |
|
|
98
94
|
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
99
|
-
| **Primitives** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
95
|
+
| **Primitives** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
100
96
|
| **Transports** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
101
97
|
|
|
102
98
|
## Features
|
|
@@ -254,14 +250,14 @@ For other settings, models, and more, check out the documentation.
|
|
|
254
250
|
|
|
255
251
|
## Streaming Agent Output
|
|
256
252
|
|
|
257
|
-
MCP-Use supports asynchronous streaming of agent output using the `
|
|
253
|
+
MCP-Use supports asynchronous streaming of agent output using the `stream` method on `MCPAgent`. This allows you to receive incremental results, tool actions, and intermediate steps as they are generated by the agent, enabling real-time feedback and progress reporting.
|
|
258
254
|
|
|
259
255
|
### How to use
|
|
260
256
|
|
|
261
|
-
Call `agent.
|
|
257
|
+
Call `agent.stream(query)` and iterate over the results asynchronously:
|
|
262
258
|
|
|
263
259
|
```python
|
|
264
|
-
async for chunk in agent.
|
|
260
|
+
async for chunk in agent.stream("Find the best restaurant in San Francisco"):
|
|
265
261
|
print(chunk["messages"], end="", flush=True)
|
|
266
262
|
```
|
|
267
263
|
|
|
@@ -281,7 +277,7 @@ async def main():
|
|
|
281
277
|
client = MCPClient.from_config_file("browser_mcp.json")
|
|
282
278
|
llm = ChatOpenAI(model="gpt-4o")
|
|
283
279
|
agent = MCPAgent(llm=llm, client=client, max_steps=30)
|
|
284
|
-
async for chunk in agent.
|
|
280
|
+
async for chunk in agent.stream("Look for job at nvidia for machine learning engineer."):
|
|
285
281
|
print(chunk["messages"], end="", flush=True)
|
|
286
282
|
|
|
287
283
|
if __name__ == "__main__":
|
|
@@ -838,31 +834,31 @@ Thanks to all our amazing contributors!
|
|
|
838
834
|
</tr>
|
|
839
835
|
<tr>
|
|
840
836
|
<td><img src="https://avatars.githubusercontent.com/u/38653995?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/patchy631/ai-engineering-hub"><strong>patchy631/ai-engineering-hub</strong></a></td>
|
|
841
|
-
<td>⭐
|
|
842
|
-
</tr>
|
|
843
|
-
<tr>
|
|
844
|
-
<td><img src="https://avatars.githubusercontent.com/u/170207473?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/tavily-ai/meeting-prep-agent"><strong>tavily-ai/meeting-prep-agent</strong></a></td>
|
|
845
|
-
<td>⭐ 131</td>
|
|
837
|
+
<td>⭐ 18021</td>
|
|
846
838
|
</tr>
|
|
847
839
|
<tr>
|
|
848
840
|
<td><img src="https://avatars.githubusercontent.com/u/164294848?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/buildfastwithai/gen-ai-experiments"><strong>buildfastwithai/gen-ai-experiments</strong></a></td>
|
|
849
|
-
<td>⭐
|
|
841
|
+
<td>⭐ 202</td>
|
|
850
842
|
</tr>
|
|
851
843
|
<tr>
|
|
852
844
|
<td><img src="https://avatars.githubusercontent.com/u/187057607?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/hud-evals/hud-python"><strong>hud-evals/hud-python</strong></a></td>
|
|
853
|
-
<td>⭐
|
|
845
|
+
<td>⭐ 168</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<td><img src="https://avatars.githubusercontent.com/u/170207473?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/tavily-ai/meeting-prep-agent"><strong>tavily-ai/meeting-prep-agent</strong></a></td>
|
|
849
|
+
<td>⭐ 138</td>
|
|
854
850
|
</tr>
|
|
855
851
|
<tr>
|
|
856
852
|
<td><img src="https://avatars.githubusercontent.com/u/20041231?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/krishnaik06/MCP-CRASH-Course"><strong>krishnaik06/MCP-CRASH-Course</strong></a></td>
|
|
857
|
-
<td>⭐
|
|
853
|
+
<td>⭐ 74</td>
|
|
858
854
|
</tr>
|
|
859
855
|
<tr>
|
|
860
856
|
<td><img src="https://avatars.githubusercontent.com/u/54944174?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/larksuite/lark-samples"><strong>larksuite/lark-samples</strong></a></td>
|
|
861
|
-
<td>⭐
|
|
857
|
+
<td>⭐ 40</td>
|
|
862
858
|
</tr>
|
|
863
859
|
<tr>
|
|
864
860
|
<td><img src="https://avatars.githubusercontent.com/u/892404?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/truemagic-coder/solana-agent-app"><strong>truemagic-coder/solana-agent-app</strong></a></td>
|
|
865
|
-
<td>⭐
|
|
861
|
+
<td>⭐ 29</td>
|
|
866
862
|
</tr>
|
|
867
863
|
<tr>
|
|
868
864
|
<td><img src="https://avatars.githubusercontent.com/u/8344498?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/schogini/techietalksai"><strong>schogini/techietalksai</strong></a></td>
|
|
@@ -874,7 +870,7 @@ Thanks to all our amazing contributors!
|
|
|
874
870
|
</tr>
|
|
875
871
|
<tr>
|
|
876
872
|
<td><img src="https://avatars.githubusercontent.com/u/100749943?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/Deniscartin/mcp-cli"><strong>Deniscartin/mcp-cli</strong></a></td>
|
|
877
|
-
<td>⭐
|
|
873
|
+
<td>⭐ 20</td>
|
|
878
874
|
</tr>
|
|
879
875
|
</table>
|
|
880
876
|
|
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
mcp_use/__init__.py,sha256=AEo6p1F4mSHLO3yKVWZbkr3OFuQwTxSYLGrFQkYb4io,1271
|
|
2
2
|
mcp_use/cli.py,sha256=d3_RqN-lca7igS-aZQIdNQidBOILVihyldywcf8GR-c,15602
|
|
3
|
-
mcp_use/client.py,sha256=
|
|
4
|
-
mcp_use/config.py,sha256=
|
|
3
|
+
mcp_use/client.py,sha256=SNkHAVknh01pGJZkISuGtGnFKQWjIM11ArJycBA6afA,12719
|
|
4
|
+
mcp_use/config.py,sha256=feW2Qxb7Ppz1N0PeQHr4GdEDAiNLmsMlSJS88HgdUns,3647
|
|
5
|
+
mcp_use/exceptions.py,sha256=PuzPj_Ov4oYJ8ny8BC6S1b9RRy39gtRotDhIaMulxQE,468
|
|
5
6
|
mcp_use/logging.py,sha256=bwZEDM3DZDVDVWmFlHCHEDAODix4_y8VSreRk-nRWuo,4971
|
|
6
7
|
mcp_use/session.py,sha256=DpH_z0a3xYemV9yWzlrf-IPZtpR27CI2S-gAm2jbCAc,4700
|
|
7
8
|
mcp_use/utils.py,sha256=QavJcVq2WxUUUCCpPCUeOB5bqIS0FFmpK-RAZkGc6aA,720
|
|
8
9
|
mcp_use/adapters/__init__.py,sha256=-xCrgPThuX7x0PHGFDdjb7M-mgw6QV3sKu5PM7ShnRg,275
|
|
9
10
|
mcp_use/adapters/base.py,sha256=8XB3xWZ6nJPhhmHwVtHT8-HO0D_9nnxzOkbVDP-fI3k,6940
|
|
10
|
-
mcp_use/adapters/langchain_adapter.py,sha256=
|
|
11
|
+
mcp_use/adapters/langchain_adapter.py,sha256=vyrrhZpW9ISTXg7uaYPRBT_LkOAmbevuLXD8Bwk7xE8,9232
|
|
11
12
|
mcp_use/agents/__init__.py,sha256=FzkntihbAqzixWdWe99zIrrcIfd4N3YWltNniutG9VA,267
|
|
12
13
|
mcp_use/agents/base.py,sha256=EN-dRbwOi9vIqofFg3jmi5yT2VKlwEr9Cwi1DZgB3eE,1591
|
|
13
|
-
mcp_use/agents/mcpagent.py,sha256=
|
|
14
|
-
mcp_use/agents/remote.py,sha256=
|
|
14
|
+
mcp_use/agents/mcpagent.py,sha256=jB9D-Pk-LtfDqEF7Me4eken8tCurRMkCkjwUeqM5Vxw,53212
|
|
15
|
+
mcp_use/agents/remote.py,sha256=eaosBxw6BxXXr9vnCwuNsSby64tVWHLdpw0FHr9edVc,15750
|
|
15
16
|
mcp_use/agents/prompts/system_prompt_builder.py,sha256=E86STmxcl2Ic763_114awNqFB2RyLrQlbvgRmJajQjI,4116
|
|
16
|
-
mcp_use/agents/prompts/templates.py,sha256=
|
|
17
|
+
mcp_use/agents/prompts/templates.py,sha256=Yd-3NILgHXTrBUw9WE11gt0-QrlvN1pykeEpg3LY4HU,1545
|
|
18
|
+
mcp_use/auth/__init__.py,sha256=TBNMvgRDp-lC3n2f0UB6kZUZlJ35SYRBVDt3hadpvXI,138
|
|
19
|
+
mcp_use/auth/bearer.py,sha256=TmeXFlmOC86tvJna2fEvfW4JjfRicUciKVBfPJzDcWs,531
|
|
20
|
+
mcp_use/auth/oauth.py,sha256=JPYQmKNkLRhd53i5iHyFkhA8JzqSylXpvF66zIqpcIk,27584
|
|
21
|
+
mcp_use/auth/oauth_callback.py,sha256=hgdtTVC8LfvxQymnB4DUWN0-kfwqNpTb9vufiByWi9M,7514
|
|
17
22
|
mcp_use/connectors/__init__.py,sha256=cUF4yT0bNr8qeLkSzg28SHueiV5qDaHEB1l1GZ2K0dc,536
|
|
18
|
-
mcp_use/connectors/base.py,sha256=
|
|
19
|
-
mcp_use/connectors/http.py,sha256=
|
|
20
|
-
mcp_use/connectors/sandbox.py,sha256=
|
|
21
|
-
mcp_use/connectors/stdio.py,sha256=
|
|
23
|
+
mcp_use/connectors/base.py,sha256=23mCgyQopU2U1ZxHCfiW_L1aV_8CH1Ek0gr9ROdf_nY,18250
|
|
24
|
+
mcp_use/connectors/http.py,sha256=ucmAn5P4R0ecm6MQGnFV2atgGsaksJrjDImOXfLTtTU,13708
|
|
25
|
+
mcp_use/connectors/sandbox.py,sha256=0915L6CjTYB4kXnuQsMhJm9bVi4V8676lFRhv1ZYnn4,12185
|
|
26
|
+
mcp_use/connectors/stdio.py,sha256=u_IPhglQpKQolDh-M9lEz_fhHECDYyLsmRqhxPR_AJE,4072
|
|
22
27
|
mcp_use/connectors/utils.py,sha256=zQ8GdNQx0Twz3by90BoU1RsWPf9wODGof4K3-NxPXeA,366
|
|
23
|
-
mcp_use/connectors/websocket.py,sha256=
|
|
28
|
+
mcp_use/connectors/websocket.py,sha256=BBtX0xrfv9B-GTrDnQbasR0gsw3rSCCTQZp9HNuVxqI,10125
|
|
24
29
|
mcp_use/errors/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
25
30
|
mcp_use/errors/error_formatting.py,sha256=17lhj5goGHuTbJ5oLCUXyJ2SuIbzsuSM1Wk8LPeqY9k,911
|
|
26
31
|
mcp_use/managers/__init__.py,sha256=FRTuJw5kYtY1Eo7wN9Aeqeqo1euiR5slvrx5Fl_SGvk,383
|
|
@@ -33,23 +38,27 @@ mcp_use/managers/tools/disconnect_server.py,sha256=dLa5PH-QZ30Dw3n5lzqilyHA8PuQ6
|
|
|
33
38
|
mcp_use/managers/tools/get_active_server.py,sha256=tCaib76gYU3L5G82tEOTq4Io2cuCXWjOjPselb-92i8,964
|
|
34
39
|
mcp_use/managers/tools/list_servers_tool.py,sha256=P_Z96Ab8ELLyo3GQfTMfyemTPJwt0VR1s_iMnWE1GCg,2037
|
|
35
40
|
mcp_use/managers/tools/search_tools.py,sha256=4vso7ln-AfG6lQAMq9FA_CyeVtSEDYEWlHtdHtfnLps,12911
|
|
41
|
+
mcp_use/middleware/__init__.py,sha256=p9cTU5ZdeHys7RnhRh-y2-kc5OjPj3cL_Yk3kbl5Vqw,1354
|
|
42
|
+
mcp_use/middleware/logging.py,sha256=5UvEte9zHUA4zCTUmqY6-5YpDUSaNSX4rmfaRsxUJqk,1153
|
|
43
|
+
mcp_use/middleware/metrics.py,sha256=qp_HzfzswVZt3ZMVLwMw73LE4MLEwUw3m2MX_RCOpfY,13178
|
|
44
|
+
mcp_use/middleware/middleware.py,sha256=oWyt9c_JiKf-p992zvrJv25ZbPBo1Kq6fO4RASTTRSk,9641
|
|
36
45
|
mcp_use/observability/__init__.py,sha256=qJR51lpW6lVvhgNnUHBXYN6FKn4kDKbGVHUhPzrx324,348
|
|
37
46
|
mcp_use/observability/callbacks_manager.py,sha256=6jIcE6ofiLRxoi4fECaTlpnllTEFQdwB0IZ0ZkY0WAQ,5324
|
|
38
47
|
mcp_use/observability/laminar.py,sha256=eBY23B8rxQOW5ggHeGB0ZCpCSMnK4rC8fBOvDdbuoq4,1613
|
|
39
48
|
mcp_use/observability/langfuse.py,sha256=kOF05cbSEir7r3fibx_q6TfKzqmbjKLV7uNxBote9XY,2677
|
|
40
49
|
mcp_use/task_managers/__init__.py,sha256=LkXOjiDq5JcyB2tNJuSzyjbxZTl1Ordr_NKKD77Nb7g,557
|
|
41
|
-
mcp_use/task_managers/base.py,sha256=
|
|
42
|
-
mcp_use/task_managers/sse.py,sha256=
|
|
50
|
+
mcp_use/task_managers/base.py,sha256=YzJqwwFRXZRFXDz9wkWz24Rowti4f8IwCLiVD-YzCVs,4648
|
|
51
|
+
mcp_use/task_managers/sse.py,sha256=L_PFQup3XFQl4LZhmOyqnfzXgFzTwrobkzdZK7DXrgE,2563
|
|
43
52
|
mcp_use/task_managers/stdio.py,sha256=MJcW03lUZUs_HEUxwFPaqy7m8QLbmdn6LagpcfZdjc8,2130
|
|
44
|
-
mcp_use/task_managers/streamable_http.py,sha256=
|
|
53
|
+
mcp_use/task_managers/streamable_http.py,sha256=dLMzMxfco4HNIk6Fo-c4SdA-iMVw2ZccSeP_NBr-mcQ,2855
|
|
45
54
|
mcp_use/task_managers/websocket.py,sha256=9JTw705rhYbP6x2xAPF6PwtNgF5yEWTQhx-dYSPMoaI,2154
|
|
46
55
|
mcp_use/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
56
|
mcp_use/telemetry/events.py,sha256=K5xqbmkum30r4gM2PWtTiUWGF8oZzGZw2DYwco1RfOQ,3113
|
|
48
57
|
mcp_use/telemetry/telemetry.py,sha256=oM_QAbZwOStKkeccvEfKmJLKhL2neFkPn5yM5rL2qHc,11711
|
|
49
58
|
mcp_use/telemetry/utils.py,sha256=kDVTqt2oSeWNJbnTOlXOehr2yFO0PMyx2UGkrWkfJiw,1769
|
|
50
59
|
mcp_use/types/sandbox.py,sha256=opJ9r56F1FvaqVvPovfAj5jZbsOexgwYx5wLgSlN8_U,712
|
|
51
|
-
mcp_use-1.3.
|
|
52
|
-
mcp_use-1.3.
|
|
53
|
-
mcp_use-1.3.
|
|
54
|
-
mcp_use-1.3.
|
|
55
|
-
mcp_use-1.3.
|
|
60
|
+
mcp_use-1.3.12.dist-info/METADATA,sha256=bC17rV6FEzhW_pFTtfCOaLN5dNcJmDQ7cyTO5ITttOc,33925
|
|
61
|
+
mcp_use-1.3.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
62
|
+
mcp_use-1.3.12.dist-info/entry_points.txt,sha256=3jzEN6xbVsMErm_cxlHpCzvM97gFgjvtOEEspUp1vK8,45
|
|
63
|
+
mcp_use-1.3.12.dist-info/licenses/LICENSE,sha256=7Pw7dbwJSBw8zH-WE03JnR5uXvitRtaGTP9QWPcexcs,1068
|
|
64
|
+
mcp_use-1.3.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|