@h1deya/langchain-mcp-tools 0.1.14 → 0.1.16

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.
Files changed (2) hide show
  1. package/README.md +8 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -11,21 +11,21 @@ dramatically expands LLM’s scope
11
11
  by enabling external tool and resource integration, including
12
12
  Google Drive, Slack, Notion, Spotify, Docker, PostgreSQL, and more…
13
13
 
14
- Over 800 functional components available as MCP servers:
14
+ Over 1500 functional components available as MCP servers:
15
15
 
16
16
  - [Glama’s list of Open-Source MCP servers](https://glama.ai/mcp/servers)
17
17
  - [Smithery: MCP Server Registry](https://smithery.ai/)
18
18
  - [awesome-mcp-servers](https://github.com/hideya/awesome-mcp-servers#Server-Implementations)
19
19
  - [MCP Get Started/Example Servers](https://modelcontextprotocol.io/examples)
20
20
 
21
- The goal of this utility is to make these 800+ MCP servers readily accessible from LangChain.
21
+ The goal of this utility is to make these 1500+ MCP servers readily accessible from LangChain.
22
22
 
23
23
  It contains a utility function `convertMcpToLangchainTools()`.
24
24
  This async function handles parallel initialization of specified multiple MCP servers
25
25
  and converts their available tools into an array of LangChain-compatible tools.
26
26
 
27
27
  For detailed information on how to use this library, please refer to the following document:
28
- - ["Supercharging LangChain: Integrating 800+ MCP with ReAct"](https://medium.com/@h1deya/supercharging-langchain-integrating-800-mcp-with-react-d4e467cbf41a)
28
+ - ["Supercharging LangChain: Integrating 1500+ MCP with ReAct"](https://medium.com/@h1deya/supercharging-langchain-integrating-1500-mcp-with-react-d4e467cbf41a)
29
29
 
30
30
  A python equivalent of this utility is available
31
31
  [here](https://pypi.org/project/langchain-mcp-tools)
@@ -91,8 +91,12 @@ For hands-on experimentation with MCP server integration,
91
91
  try [this LangChain application built with the utility](https://github.com/hideya/mcp-client-langchain-ts)
92
92
 
93
93
  For detailed information on how to use this library, please refer to the following document:
94
- ["Supercharging LangChain: Integrating 800+ MCP with ReAct"](https://medium.com/@h1deya/supercharging-langchain-integrating-800-mcp-with-react-d4e467cbf41a)
94
+ ["Supercharging LangChain: Integrating 1500+ MCP with ReAct"](https://medium.com/@h1deya/supercharging-langchain-integrating-1500-mcp-with-react-d4e467cbf41a)
95
95
 
96
96
  ## Limitations
97
97
 
98
98
  Currently, only text results of tool calls are supported.
99
+
100
+ ## Change Log
101
+
102
+ Can be found [here](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/CHANGELOG.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h1deya/langchain-mcp-tools",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "MCP To LangChain Tools Conversion Utility",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -56,12 +56,12 @@
56
56
  "@types/node": "^22.10.5",
57
57
  "@typescript-eslint/eslint-plugin": "^8.19.0",
58
58
  "@typescript-eslint/parser": "^8.19.0",
59
- "@vitest/coverage-v8": "^2.1.8",
59
+ "@vitest/coverage-v8": "^3.0.9",
60
60
  "dotenv": "^16.4.7",
61
61
  "eslint": "^9.17.0",
62
62
  "tsx": "^4.19.3",
63
63
  "typescript": "^5.7.2",
64
64
  "typescript-eslint": "^8.19.0",
65
- "vitest": "^2.1.8"
65
+ "vitest": "^3.0.9"
66
66
  }
67
67
  }