@h1deya/langchain-mcp-tools 0.1.10 → 0.1.11
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.
- package/README.md +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,15 +12,18 @@ such as web search and database access.
|
|
|
12
12
|
Thanks to its open-source nature, MCP has gained significant traction in the developer community,
|
|
13
13
|
with over 400 MCP servers already developed and shared:
|
|
14
14
|
|
|
15
|
-
- [Smithery: MCP Server Registry](https://smithery.ai/)
|
|
16
15
|
- [Glama’s list of Open-Source MCP servers](https://glama.ai/mcp/servers)
|
|
16
|
+
- [Smithery: MCP Server Registry](https://smithery.ai/)
|
|
17
|
+
- [awesome-mcp-servers](https://github.com/hideya/awesome-mcp-servers#Server-Implementations)
|
|
18
|
+
- [MCP Get Started/Example Servers](https://modelcontextprotocol.io/examples)
|
|
17
19
|
|
|
18
|
-
In the MCP framework, external features are encapsulated in an MCP server
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
In the MCP framework, external features are encapsulated in an MCP server,
|
|
21
|
+
which typically runs in a separate process and communicates
|
|
22
|
+
via `stdio` using the open standard protocol.
|
|
23
|
+
This clean decoupling makes it easy to adopt and reuse any of
|
|
24
|
+
the significant collections of MCP servers listed above.
|
|
22
25
|
|
|
23
|
-
To make it easy for LangChain to take advantage of such a vast resource base,
|
|
26
|
+
To make it easy for LangChain users to take advantage of such a vast resource base,
|
|
24
27
|
this package offers quick and seamless access from LangChain to MCP servers.
|
|
25
28
|
|
|
26
29
|
It contains a utility function `convertMcpToLangchainTools()`.
|