mcp-use 1.3.10__py3-none-any.whl → 1.3.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.
Potentially problematic release.
This version of mcp-use might be problematic. Click here for more details.
- mcp_use/adapters/langchain_adapter.py +7 -5
- mcp_use/agents/mcpagent.py +16 -4
- mcp_use/agents/prompts/templates.py +1 -10
- 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 +1 -1
- mcp_use/config.py +2 -2
- mcp_use/connectors/base.py +17 -12
- mcp_use/connectors/http.py +117 -21
- mcp_use/connectors/websocket.py +14 -5
- mcp_use/exceptions.py +31 -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.11.dist-info}/METADATA +19 -24
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.11.dist-info}/RECORD +21 -16
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.11.dist-info}/WHEEL +0 -0
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.11.dist-info}/entry_points.txt +0 -0
- {mcp_use-1.3.10.dist-info → mcp_use-1.3.11.dist-info}/licenses/LICENSE +0 -0
mcp_use/task_managers/sse.py
CHANGED
|
@@ -7,6 +7,7 @@ that ensures proper task isolation and resource cleanup.
|
|
|
7
7
|
|
|
8
8
|
from typing import Any
|
|
9
9
|
|
|
10
|
+
import httpx
|
|
10
11
|
from mcp.client.sse import sse_client
|
|
11
12
|
|
|
12
13
|
from ..logging import logger
|
|
@@ -27,6 +28,7 @@ class SseConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
27
28
|
headers: dict[str, str] | None = None,
|
|
28
29
|
timeout: float = 5,
|
|
29
30
|
sse_read_timeout: float = 60 * 5,
|
|
31
|
+
auth: httpx.Auth | None = None,
|
|
30
32
|
):
|
|
31
33
|
"""Initialize a new SSE connection manager.
|
|
32
34
|
|
|
@@ -35,12 +37,14 @@ class SseConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
35
37
|
headers: Optional HTTP headers
|
|
36
38
|
timeout: Timeout for HTTP operations in seconds
|
|
37
39
|
sse_read_timeout: Timeout for SSE read operations in seconds
|
|
40
|
+
auth: Optional httpx.Auth instance for authentication
|
|
38
41
|
"""
|
|
39
42
|
super().__init__()
|
|
40
43
|
self.url = url
|
|
41
44
|
self.headers = headers or {}
|
|
42
45
|
self.timeout = timeout
|
|
43
46
|
self.sse_read_timeout = sse_read_timeout
|
|
47
|
+
self.auth = auth
|
|
44
48
|
self._sse_ctx = None
|
|
45
49
|
|
|
46
50
|
async def _establish_connection(self) -> tuple[Any, Any]:
|
|
@@ -58,6 +62,7 @@ class SseConnectionManager(ConnectionManager[tuple[Any, Any]]):
|
|
|
58
62
|
headers=self.headers,
|
|
59
63
|
timeout=self.timeout,
|
|
60
64
|
sse_read_timeout=self.sse_read_timeout,
|
|
65
|
+
auth=self.auth,
|
|
61
66
|
)
|
|
62
67
|
|
|
63
68
|
# Enter the context manager
|
|
@@ -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.11
|
|
4
4
|
Summary: MCP Library for LLMs
|
|
5
5
|
Author-email: Pietro Zullo <pietro.zullo@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,6 +15,7 @@ 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
|
|
@@ -22,7 +23,7 @@ Requires-Dist: posthog>=4.8.0
|
|
|
22
23
|
Requires-Dist: pydantic>=2.0.0
|
|
23
24
|
Requires-Dist: python-dotenv>=1.0.0
|
|
24
25
|
Requires-Dist: scarf-sdk>=0.1.0
|
|
25
|
-
Requires-Dist: websockets>=
|
|
26
|
+
Requires-Dist: websockets>=15.0
|
|
26
27
|
Provides-Extra: anthropic
|
|
27
28
|
Requires-Dist: langchain-anthropic; extra == 'anthropic'
|
|
28
29
|
Provides-Extra: dev
|
|
@@ -52,12 +53,6 @@ Description-Content-Type: text/markdown
|
|
|
52
53
|
</picture>
|
|
53
54
|
</div>
|
|
54
55
|
|
|
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
56
|
|
|
62
57
|
<h1 align="center">🚀 Create MCP Clients and Agents</h1>
|
|
63
58
|
<p align="center">
|
|
@@ -96,7 +91,7 @@ Description-Content-Type: text/markdown
|
|
|
96
91
|
|
|
97
92
|
| Supports | |
|
|
98
93
|
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
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) |
|
|
94
|
+
| **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
95
|
| **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
96
|
|
|
102
97
|
## Features
|
|
@@ -254,14 +249,14 @@ For other settings, models, and more, check out the documentation.
|
|
|
254
249
|
|
|
255
250
|
## Streaming Agent Output
|
|
256
251
|
|
|
257
|
-
MCP-Use supports asynchronous streaming of agent output using the `
|
|
252
|
+
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
253
|
|
|
259
254
|
### How to use
|
|
260
255
|
|
|
261
|
-
Call `agent.
|
|
256
|
+
Call `agent.stream(query)` and iterate over the results asynchronously:
|
|
262
257
|
|
|
263
258
|
```python
|
|
264
|
-
async for chunk in agent.
|
|
259
|
+
async for chunk in agent.stream("Find the best restaurant in San Francisco"):
|
|
265
260
|
print(chunk["messages"], end="", flush=True)
|
|
266
261
|
```
|
|
267
262
|
|
|
@@ -281,7 +276,7 @@ async def main():
|
|
|
281
276
|
client = MCPClient.from_config_file("browser_mcp.json")
|
|
282
277
|
llm = ChatOpenAI(model="gpt-4o")
|
|
283
278
|
agent = MCPAgent(llm=llm, client=client, max_steps=30)
|
|
284
|
-
async for chunk in agent.
|
|
279
|
+
async for chunk in agent.stream("Look for job at nvidia for machine learning engineer."):
|
|
285
280
|
print(chunk["messages"], end="", flush=True)
|
|
286
281
|
|
|
287
282
|
if __name__ == "__main__":
|
|
@@ -838,31 +833,31 @@ Thanks to all our amazing contributors!
|
|
|
838
833
|
</tr>
|
|
839
834
|
<tr>
|
|
840
835
|
<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>
|
|
836
|
+
<td>⭐ 17917</td>
|
|
846
837
|
</tr>
|
|
847
838
|
<tr>
|
|
848
839
|
<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>⭐
|
|
840
|
+
<td>⭐ 178</td>
|
|
850
841
|
</tr>
|
|
851
842
|
<tr>
|
|
852
843
|
<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>⭐
|
|
844
|
+
<td>⭐ 159</td>
|
|
845
|
+
</tr>
|
|
846
|
+
<tr>
|
|
847
|
+
<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>
|
|
848
|
+
<td>⭐ 136</td>
|
|
854
849
|
</tr>
|
|
855
850
|
<tr>
|
|
856
851
|
<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>⭐
|
|
852
|
+
<td>⭐ 72</td>
|
|
858
853
|
</tr>
|
|
859
854
|
<tr>
|
|
860
855
|
<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>⭐
|
|
856
|
+
<td>⭐ 40</td>
|
|
862
857
|
</tr>
|
|
863
858
|
<tr>
|
|
864
859
|
<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>⭐
|
|
860
|
+
<td>⭐ 29</td>
|
|
866
861
|
</tr>
|
|
867
862
|
<tr>
|
|
868
863
|
<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 +869,7 @@ Thanks to all our amazing contributors!
|
|
|
874
869
|
</tr>
|
|
875
870
|
<tr>
|
|
876
871
|
<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>⭐
|
|
872
|
+
<td>⭐ 20</td>
|
|
878
873
|
</tr>
|
|
879
874
|
</table>
|
|
880
875
|
|
|
@@ -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=bjXcJ0Y517kQw0MQ6GNgYbEkedSySuUFatrOnHWqBx8,11723
|
|
4
|
+
mcp_use/config.py,sha256=e6uMe4By2nOjXqMEIq-qyyu5iNLIdasah_7oABk6SfQ,3459
|
|
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=EJnKm2VxY2mTSQulcwvFDvG_he2npr376rd5nOP-U90,11139
|
|
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/mcpagent.py,sha256=G5yEg37aos17wAFEbjLIxuHogASlTyFN6ziShWl9ziU,51587
|
|
14
15
|
mcp_use/agents/remote.py,sha256=7wRGX4ucppWvZdSsxJ3TtrPXYrrwGf9oD5j0UtSYitI,14005
|
|
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=
|
|
23
|
+
mcp_use/connectors/base.py,sha256=LcWo2tfpri4XtIQEI4C_NIp6NVn2rKrKGL-Q5ZZGAPM,17936
|
|
24
|
+
mcp_use/connectors/http.py,sha256=e19P25Hj0o_joLndqoLmNs1THi-T655mEdyMIIQlSPI,13095
|
|
20
25
|
mcp_use/connectors/sandbox.py,sha256=oXs4Q_1bQJ10XOrJLjFUBKvFy2VmWmyzLhotczl44Po,11804
|
|
21
26
|
mcp_use/connectors/stdio.py,sha256=4gXdXyaeA3B-ywAjPmbEEbHxP2Gg5cWsXNC2kHkubDA,3766
|
|
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=iYSpZiLtFCKh7qh3CtplORTXQ_nqGz0ZdBcI_yAChnA,10140
|
|
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
|
|
@@ -38,18 +43,18 @@ mcp_use/observability/callbacks_manager.py,sha256=6jIcE6ofiLRxoi4fECaTlpnllTEFQd
|
|
|
38
43
|
mcp_use/observability/laminar.py,sha256=eBY23B8rxQOW5ggHeGB0ZCpCSMnK4rC8fBOvDdbuoq4,1613
|
|
39
44
|
mcp_use/observability/langfuse.py,sha256=kOF05cbSEir7r3fibx_q6TfKzqmbjKLV7uNxBote9XY,2677
|
|
40
45
|
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=
|
|
46
|
+
mcp_use/task_managers/base.py,sha256=YzJqwwFRXZRFXDz9wkWz24Rowti4f8IwCLiVD-YzCVs,4648
|
|
47
|
+
mcp_use/task_managers/sse.py,sha256=L_PFQup3XFQl4LZhmOyqnfzXgFzTwrobkzdZK7DXrgE,2563
|
|
43
48
|
mcp_use/task_managers/stdio.py,sha256=MJcW03lUZUs_HEUxwFPaqy7m8QLbmdn6LagpcfZdjc8,2130
|
|
44
|
-
mcp_use/task_managers/streamable_http.py,sha256=
|
|
49
|
+
mcp_use/task_managers/streamable_http.py,sha256=dLMzMxfco4HNIk6Fo-c4SdA-iMVw2ZccSeP_NBr-mcQ,2855
|
|
45
50
|
mcp_use/task_managers/websocket.py,sha256=9JTw705rhYbP6x2xAPF6PwtNgF5yEWTQhx-dYSPMoaI,2154
|
|
46
51
|
mcp_use/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
52
|
mcp_use/telemetry/events.py,sha256=K5xqbmkum30r4gM2PWtTiUWGF8oZzGZw2DYwco1RfOQ,3113
|
|
48
53
|
mcp_use/telemetry/telemetry.py,sha256=oM_QAbZwOStKkeccvEfKmJLKhL2neFkPn5yM5rL2qHc,11711
|
|
49
54
|
mcp_use/telemetry/utils.py,sha256=kDVTqt2oSeWNJbnTOlXOehr2yFO0PMyx2UGkrWkfJiw,1769
|
|
50
55
|
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.
|
|
56
|
+
mcp_use-1.3.11.dist-info/METADATA,sha256=lMZW9iso6RkbEoI9k5eWcXX3CnXs1BouH0DN5oh-u7M,33886
|
|
57
|
+
mcp_use-1.3.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
58
|
+
mcp_use-1.3.11.dist-info/entry_points.txt,sha256=3jzEN6xbVsMErm_cxlHpCzvM97gFgjvtOEEspUp1vK8,45
|
|
59
|
+
mcp_use-1.3.11.dist-info/licenses/LICENSE,sha256=7Pw7dbwJSBw8zH-WE03JnR5uXvitRtaGTP9QWPcexcs,1068
|
|
60
|
+
mcp_use-1.3.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|