Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions .release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"crates/rust-mcp-sdk": "0.7.3",
"crates/rust-mcp-macros": "0.5.2",
"crates/rust-mcp-transport": "0.6.2",
"crates/rust-mcp-extra": "0.1.3",
"examples/hello-world-mcp-server-stdio": "0.1.32",
"examples/hello-world-mcp-server-stdio-core": "0.1.23",
"examples/simple-mcp-client-stdio": "0.1.32",
"examples/simple-mcp-client-stdio-core": "0.1.32",
"examples/hello-world-server-streamable-http-core": "0.1.23",
"examples/hello-world-server-streamable-http": "0.1.35",
"examples/simple-mcp-client-sse-core": "0.1.23",
"examples/simple-mcp-client-sse": "0.1.26",
"examples/simple-mcp-client-streamable-http": "0.1.4",
"examples/simple-mcp-client-streamable-http-core": "0.1.4"
"crates/rust-mcp-sdk": "0.7.4",
"crates/rust-mcp-macros": "0.5.3",
"crates/rust-mcp-transport": "0.6.3",
"crates/rust-mcp-extra": "0.1.4",
"examples/hello-world-mcp-server-stdio": "0.1.33",
"examples/hello-world-mcp-server-stdio-core": "0.1.24",
"examples/simple-mcp-client-stdio": "0.1.33",
"examples/simple-mcp-client-stdio-core": "0.1.33",
"examples/hello-world-server-streamable-http-core": "0.1.24",
"examples/hello-world-server-streamable-http": "0.1.36",
"examples/simple-mcp-client-sse-core": "0.1.24",
"examples/simple-mcp-client-sse": "0.1.27",
"examples/simple-mcp-client-streamable-http": "0.1.5",
"examples/simple-mcp-client-streamable-http-core": "0.1.5",
"examples/auth/server-oauth-remote": "0.1.35"
}
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ rust-version = "1.80.0"

[workspace.dependencies]
# Workspace member crates
rust-mcp-transport = { version = "0.6.2", path = "crates/rust-mcp-transport", default-features = false }
rust-mcp-transport = { version = "0.6.3", path = "crates/rust-mcp-transport", default-features = false }
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
rust-mcp-macros = { version = "0.5.2", path = "crates/rust-mcp-macros", default-features = false }
rust-mcp-macros = { version = "0.5.3", path = "crates/rust-mcp-macros", default-features = false }
rust-mcp-extra = { version="0.1.0", path = "crates/rust-mcp-extra", default-features = false }

# External crates
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.3...rust-mcp-extra-v0.1.4) (2025-11-23)


### 🚀 Features

* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))

## [0.1.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.2...rust-mcp-extra-v0.1.3) (2025-11-08)


Expand Down
4 changes: 2 additions & 2 deletions crates/rust-mcp-extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-extra"
version = "0.1.3"
version = "0.1.4"
authors = ["Ali Hashemi"]
categories = ["api-bindings", "development-tools", "asynchronous", "parsing"]
description = "A companion crate to rust-mcp-sdk offering extra implementations of core traits like SessionStore and EventStore, enabling integration with various database backends and third-party platforms such as AWS Lambda for serverless and cloud-native MCP applications."
Expand All @@ -13,7 +13,7 @@ rust-version = { workspace = true }
exclude = ["assets/", "tests/"]

[dependencies]
rust-mcp-sdk = { version = "0.7.3" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18","auth","hyper-server","macros"] }
rust-mcp-sdk = { version = "0.7.4" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18","auth","hyper-server","macros"] }
base64 = {workspace = true, optional=true}
url= {workspace = true, optional=true}
nanoid = {version="0.4", optional=true}
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.5.2...rust-mcp-macros-v0.5.3) (2025-11-23)


### 🚀 Features

* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))

## [0.5.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.5.1...rust-mcp-macros-v0.5.2) (2025-09-19)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-macros"
version = "0.5.2"
version = "0.5.3"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
description = "A procedural macro that derives the MCPToolSchema implementation for structs or enums, generating a tool_input_schema function used with rust_mcp_schema::Tool."
Expand Down
12 changes: 12 additions & 0 deletions crates/rust-mcp-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.7.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.3...rust-mcp-sdk-v0.7.4) (2025-11-23)


### 🚀 Features

* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))


### 🐛 Bug Fixes

* Issue 116 - custom_streamable_http_endpoint ([#117](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/117)) ([6f70e18](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/6f70e18233bee5b56cf32e3fd1932973e1d38c6f))

## [0.7.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.2...rust-mcp-sdk-v0.7.3) (2025-11-08)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-sdk"
version = "0.7.3"
version = "0.7.4"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
description = "An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects."
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-transport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.6.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.6.2...rust-mcp-transport-v0.6.3) (2025-11-23)


### 🚀 Features

* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))

## [0.6.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.6.1...rust-mcp-transport-v0.6.2) (2025-10-20)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-transport"
version = "0.6.2"
version = "0.6.3"
authors = ["Ali Hashemi"]
categories = ["data-structures"]
description = "Transport implementations for the MCP (Model Context Protocol) within the rust-mcp-sdk ecosystem, enabling asynchronous data exchange and efficient message handling between MCP clients and servers."
Expand Down
2 changes: 1 addition & 1 deletion examples/auth/server-oauth-remote/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "server-oauth-remote"
version = "0.1.34"
version = "0.1.35"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server-stdio-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server-stdio-core"
version = "0.1.23"
version = "0.1.24"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server-stdio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server-stdio"
version = "0.1.32"
version = "0.1.33"
edition = "2021"
publish = false
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-server-streamable-http-core"
version = "0.1.23"
version = "0.1.24"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-server-streamable-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-server-streamable-http"
version = "0.1.35"
version = "0.1.36"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-sse-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-sse-core"
version = "0.1.23"
version = "0.1.24"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-sse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-sse"
version = "0.1.26"
version = "0.1.27"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-stdio-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-stdio-core"
version = "0.1.32"
version = "0.1.33"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-stdio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-stdio"
version = "0.1.32"
version = "0.1.33"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-streamable-http-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-streamable-http-core"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-streamable-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-streamable-http"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
publish = false
license = "MIT"
Expand Down