Skip to content

Commit 9863cd5

Browse files
author
hideya
committed
Update to ver 0.3.4
1 parent 3207c45 commit 9863cd5

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.3.4] - 2025-08-06
9+
10+
### Changed
11+
- Minor REAMDE.md updates
12+
13+
814
## [0.3.3] - 2025-08-06
915

1016
### Added

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A simple, lightweight library to use
44
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
55
server tools from LangChain.
66

7-
<img style="width:450px;" 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" />
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" />
88

99
Its simplicity and extra features, such as
1010
[tools schema adjustments for LLM compatibility](https://github.com/hideya/langchain-mcp-tools-ts/blob/main/README.md#llm-provider-schema-compatibility)
@@ -59,6 +59,7 @@ const { tools, cleanup } = await convertMcpToLangchainTools(
5959
llmProvider: "google_gemini"
6060
// llmProvider: "openai"
6161
// llmProvider: "anthropic"
62+
// llmProvider: "xai"
6263
}
6364
);
6465
```

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@h1deya/langchain-mcp-tools",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "MCP To LangChain Tools Conversion Utility",
55
"license": "MIT",
66
"keywords": [

testfiles/simple-usage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export async function test(): Promise<void> {
189189
// const llm = new ChatOpenAI({
190190
// // https://platform.openai.com/docs/pricing
191191
// // https://platform.openai.com/settings/organization/billing/overview
192-
// model: "gpt-4.1-nano"
192+
// model: "gpt-4o-mini"
193193
// // model: "o4-mini"
194194
// });
195195

0 commit comments

Comments
 (0)