langchain-mcp-tools 0.1.2__tar.gz → 0.1.3__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.
- {langchain_mcp_tools-0.1.2/src/langchain_mcp_tools.egg-info → langchain_mcp_tools-0.1.3}/PKG-INFO +21 -2
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/README.md +20 -1
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/pyproject.toml +1 -1
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3/src/langchain_mcp_tools.egg-info}/PKG-INFO +21 -2
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/LICENSE +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/setup.cfg +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools/__init__.py +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools/langchain_mcp_tools.py +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools/py.typed +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools.egg-info/SOURCES.txt +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools.egg-info/dependency_links.txt +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools.egg-info/requires.txt +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools.egg-info/top_level.txt +0 -0
- {langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/tests/test_langchain_mcp_tools.py +0 -0
{langchain_mcp_tools-0.1.2/src/langchain_mcp_tools.egg-info → langchain_mcp_tools-0.1.3}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: langchain-mcp-tools
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
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
|
@@ -28,11 +28,30 @@ This package is intended to simplify the use of
|
|
28
28
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
|
29
29
|
server tools with LangChain / Python.
|
30
30
|
|
31
|
+
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/),
|
32
|
+
introduced by
|
33
|
+
[Anthropic](https://www.anthropic.com/news/model-context-protocol),
|
34
|
+
extends the capabilities of LLMs by enabling interaction with external tools and resources,
|
35
|
+
such as web search and database access.
|
36
|
+
Thanks to its open-source nature, MCP has gained significant traction in the developer community,
|
37
|
+
with over 400 MCP servers already developed and shared:
|
38
|
+
|
39
|
+
- [Smithery: MCP Server Registry](https://smithery.ai/)
|
40
|
+
- [Glama’s list of Open-Source MCP servers](https://glama.ai/mcp/servers)
|
41
|
+
|
42
|
+
In the MCP framework, external features are encapsulated in an MCP server
|
43
|
+
that runs in a separate process.
|
44
|
+
This clear decoupling allows for easy adoption and reuse of
|
45
|
+
any of the significant collections of MCP servers listed above.
|
46
|
+
|
47
|
+
To make it easy for LangChain to take advantage of such a vast resource base,
|
48
|
+
this package offers quick and seamless access from LangChain to MCP servers.
|
49
|
+
|
31
50
|
It contains a utility function `convert_mcp_to_langchain_tools()`.
|
32
51
|
This async function handles parallel initialization of specified multiple MCP servers
|
33
52
|
and converts their available tools into a list of LangChain-compatible tools.
|
34
53
|
|
35
|
-
A typescript equivalent of this utility
|
54
|
+
A typescript equivalent of this utility is available
|
36
55
|
[here](https://www.npmjs.com/package/@h1deya/langchain-mcp-tools)
|
37
56
|
|
38
57
|
## Requirements
|
@@ -4,11 +4,30 @@ This package is intended to simplify the use of
|
|
4
4
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
|
5
5
|
server tools with LangChain / Python.
|
6
6
|
|
7
|
+
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/),
|
8
|
+
introduced by
|
9
|
+
[Anthropic](https://www.anthropic.com/news/model-context-protocol),
|
10
|
+
extends the capabilities of LLMs by enabling interaction with external tools and resources,
|
11
|
+
such as web search and database access.
|
12
|
+
Thanks to its open-source nature, MCP has gained significant traction in the developer community,
|
13
|
+
with over 400 MCP servers already developed and shared:
|
14
|
+
|
15
|
+
- [Smithery: MCP Server Registry](https://smithery.ai/)
|
16
|
+
- [Glama’s list of Open-Source MCP servers](https://glama.ai/mcp/servers)
|
17
|
+
|
18
|
+
In the MCP framework, external features are encapsulated in an MCP server
|
19
|
+
that runs in a separate process.
|
20
|
+
This clear decoupling allows for easy adoption and reuse of
|
21
|
+
any of the significant collections of MCP servers listed above.
|
22
|
+
|
23
|
+
To make it easy for LangChain to take advantage of such a vast resource base,
|
24
|
+
this package offers quick and seamless access from LangChain to MCP servers.
|
25
|
+
|
7
26
|
It contains a utility function `convert_mcp_to_langchain_tools()`.
|
8
27
|
This async function handles parallel initialization of specified multiple MCP servers
|
9
28
|
and converts their available tools into a list of LangChain-compatible tools.
|
10
29
|
|
11
|
-
A typescript equivalent of this utility
|
30
|
+
A typescript equivalent of this utility is available
|
12
31
|
[here](https://www.npmjs.com/package/@h1deya/langchain-mcp-tools)
|
13
32
|
|
14
33
|
## Requirements
|
{langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3/src/langchain_mcp_tools.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: langchain-mcp-tools
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
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
|
@@ -28,11 +28,30 @@ This package is intended to simplify the use of
|
|
28
28
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
|
29
29
|
server tools with LangChain / Python.
|
30
30
|
|
31
|
+
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/),
|
32
|
+
introduced by
|
33
|
+
[Anthropic](https://www.anthropic.com/news/model-context-protocol),
|
34
|
+
extends the capabilities of LLMs by enabling interaction with external tools and resources,
|
35
|
+
such as web search and database access.
|
36
|
+
Thanks to its open-source nature, MCP has gained significant traction in the developer community,
|
37
|
+
with over 400 MCP servers already developed and shared:
|
38
|
+
|
39
|
+
- [Smithery: MCP Server Registry](https://smithery.ai/)
|
40
|
+
- [Glama’s list of Open-Source MCP servers](https://glama.ai/mcp/servers)
|
41
|
+
|
42
|
+
In the MCP framework, external features are encapsulated in an MCP server
|
43
|
+
that runs in a separate process.
|
44
|
+
This clear decoupling allows for easy adoption and reuse of
|
45
|
+
any of the significant collections of MCP servers listed above.
|
46
|
+
|
47
|
+
To make it easy for LangChain to take advantage of such a vast resource base,
|
48
|
+
this package offers quick and seamless access from LangChain to MCP servers.
|
49
|
+
|
31
50
|
It contains a utility function `convert_mcp_to_langchain_tools()`.
|
32
51
|
This async function handles parallel initialization of specified multiple MCP servers
|
33
52
|
and converts their available tools into a list of LangChain-compatible tools.
|
34
53
|
|
35
|
-
A typescript equivalent of this utility
|
54
|
+
A typescript equivalent of this utility is available
|
36
55
|
[here](https://www.npmjs.com/package/@h1deya/langchain-mcp-tools)
|
37
56
|
|
38
57
|
## Requirements
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{langchain_mcp_tools-0.1.2 → langchain_mcp_tools-0.1.3}/src/langchain_mcp_tools.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|