langchain-mcp-tools 0.0.12__tar.gz → 0.0.13__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: langchain-mcp-tools
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: Model Context Protocol (MCP) To LangChain Tools Conversion Utility
5
5
  Project-URL: Bug Tracker, https://github.com/hideya/langchain-mcp-tools-py/issues
6
6
  Project-URL: Source Code, https://github.com/hideya/langchain-mcp-tools-py
@@ -120,12 +120,13 @@ Any comments pointing out something I am missing would be greatly appreciated!
120
120
 
121
121
  1. Core Challenge:
122
122
  - Async resources management for `stdio_client` and `ClientSession` seems
123
- to require relying exclusively on `asynccontextmanager` for cleanup with
124
- no manual cleanup options
123
+ to require relying exclusively on `asynccontextmanager` for cleanup,
124
+ with no manual cleanup options
125
125
  (based on [the mcp python-sdk impl as of Jan 14, 2025](https://github.com/modelcontextprotocol/python-sdk/tree/99727a9/src/mcp/client))
126
126
  - Initializing multiple MCP servers in parallel requires a dedicated
127
127
  `asyncio.Task` per server
128
- - Necessity of keeping sessions alive for later use after initialization
128
+ - Necessity of keeping sessions alive for later use by different tasks
129
+ after initialization
129
130
  - Ensuring proper cleanup later in the same task that created them
130
131
 
131
132
  2. Solution Strategy:
@@ -95,12 +95,13 @@ Any comments pointing out something I am missing would be greatly appreciated!
95
95
 
96
96
  1. Core Challenge:
97
97
  - Async resources management for `stdio_client` and `ClientSession` seems
98
- to require relying exclusively on `asynccontextmanager` for cleanup with
99
- no manual cleanup options
98
+ to require relying exclusively on `asynccontextmanager` for cleanup,
99
+ with no manual cleanup options
100
100
  (based on [the mcp python-sdk impl as of Jan 14, 2025](https://github.com/modelcontextprotocol/python-sdk/tree/99727a9/src/mcp/client))
101
101
  - Initializing multiple MCP servers in parallel requires a dedicated
102
102
  `asyncio.Task` per server
103
- - Necessity of keeping sessions alive for later use after initialization
103
+ - Necessity of keeping sessions alive for later use by different tasks
104
+ after initialization
104
105
  - Ensuring proper cleanup later in the same task that created them
105
106
 
106
107
  2. Solution Strategy:
@@ -38,12 +38,13 @@ The key aspects are:
38
38
 
39
39
  1. Core Challenge:
40
40
  - Async resources management for `stdio_client` and `ClientSession` seems
41
- to require relying exclusively on `asynccontextmanager` for cleanup with
42
- no manual cleanup options
41
+ to require relying exclusively on `asynccontextmanager` for cleanup,
42
+ with no manual cleanup options
43
43
  (based on [the mcp python-sdk impl as of Jan 14, 2025](https://github.com/modelcontextprotocol/python-sdk/tree/99727a9/src/mcp/client))
44
44
  - Initializing multiple MCP servers in parallel requires a dedicated
45
45
  `asyncio.Task` per server
46
- - Necessity of keeping sessions alive for later use after initialization
46
+ - Necessity of keeping sessions alive for later use by different tasks
47
+ after initialization
47
48
  - Ensuring proper cleanup later in the same task that created them
48
49
 
49
50
  2. Solution Strategy:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: langchain-mcp-tools
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: Model Context Protocol (MCP) To LangChain Tools Conversion Utility
5
5
  Project-URL: Bug Tracker, https://github.com/hideya/langchain-mcp-tools-py/issues
6
6
  Project-URL: Source Code, https://github.com/hideya/langchain-mcp-tools-py
@@ -120,12 +120,13 @@ Any comments pointing out something I am missing would be greatly appreciated!
120
120
 
121
121
  1. Core Challenge:
122
122
  - Async resources management for `stdio_client` and `ClientSession` seems
123
- to require relying exclusively on `asynccontextmanager` for cleanup with
124
- no manual cleanup options
123
+ to require relying exclusively on `asynccontextmanager` for cleanup,
124
+ with no manual cleanup options
125
125
  (based on [the mcp python-sdk impl as of Jan 14, 2025](https://github.com/modelcontextprotocol/python-sdk/tree/99727a9/src/mcp/client))
126
126
  - Initializing multiple MCP servers in parallel requires a dedicated
127
127
  `asyncio.Task` per server
128
- - Necessity of keeping sessions alive for later use after initialization
128
+ - Necessity of keeping sessions alive for later use by different tasks
129
+ after initialization
129
130
  - Ensuring proper cleanup later in the same task that created them
130
131
 
131
132
  2. Solution Strategy:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "langchain-mcp-tools"
3
- version = "0.0.12"
3
+ version = "0.0.13"
4
4
  description = "Model Context Protocol (MCP) To LangChain Tools Conversion Utility"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"