@h1deya/langchain-mcp-tools 0.3.1 → 0.3.2
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 +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# MCP to LangChain Tools Conversion Utility / TypeScript [](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/LICENSE) [](https://www.npmjs.com/package/@h1deya/langchain-mcp-tools) [](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/LICENSE) [](https://www.npmjs.com/package/@h1deya/langchain-mcp-tools) [](https://dependents.info/hideya/langchain-mcp-tools-ts)
|
|
2
2
|
|
|
3
3
|
A simple, lightweight library intended to simplify the use of
|
|
4
4
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
|
|
5
|
-
server tools
|
|
5
|
+
server tools from LangChain.
|
|
6
|
+
|
|
7
|
+
<img width="500px" alt="langchain-mcp-tools-diagram" src="https://raw.githubusercontent.com/hideya/langchain-mcp-tools-py/refs/heads/main/docs/images/langchain-mcp-tools-diagram.png" />
|
|
6
8
|
|
|
7
9
|
Its simplicity and extra features, such as
|
|
8
10
|
[tools schema adjustments for LLM compatibility](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/README.md#llm-provider-schema-compatibility)
|
|
@@ -23,7 +25,7 @@ server tools with LangChain / TypeScript.
|
|
|
23
25
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/) is the de facto industry standard
|
|
24
26
|
that dramatically expands the scope of LLMs by enabling the integration of external tools and resources,
|
|
25
27
|
including DBs, Cloud Storages, GitHub, Docker, Slack, and more.
|
|
26
|
-
There are
|
|
28
|
+
There are quite a few useful MCP servers already available.
|
|
27
29
|
See [MCP Server Listing on the Official Site](https://github.com/modelcontextprotocol/servers?tab=readme-ov-file#model-context-protocol-servers).
|
|
28
30
|
|
|
29
31
|
This utility's goal is to make these numerous MCP servers easily accessible from LangChain.
|
|
@@ -308,7 +310,7 @@ Can be found [here](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/C
|
|
|
308
310
|
1. **Enable debug logging**: Set `logLevel: "debug"` to see detailed connection and execution logs
|
|
309
311
|
2. **Check server stderr**: For stdio MCP servers, use `stderr` redirection to capture server error output
|
|
310
312
|
3. **Test explicit transports**: Try forcing specific transport types to isolate auto-detection issues
|
|
311
|
-
4. **Verify server independently**:
|
|
313
|
+
4. **Verify server independently**: Refer to [Debugging Section in MCP documentation](https://modelcontextprotocol.io/docs/tools/debugging)
|
|
312
314
|
|
|
313
315
|
### LLM Provider Schema Compatibility
|
|
314
316
|
|