Skip to content

chore(deps): update pulseengine-mcp-server requirement from 0.11.0 to 0.17.1#27

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/pulseengine-mcp-server-0.17.1
Open

chore(deps): update pulseengine-mcp-server requirement from 0.11.0 to 0.17.1#27
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/pulseengine-mcp-server-0.17.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Updates the requirements on pulseengine-mcp-server to permit the latest version.

Release notes

Sourced from pulseengine-mcp-server's releases.

v0.16.0 - Bidirectional Communication

🎉 Bidirectional Communication Support

This release adds full support for server-to-client communication, enabling tools to send notifications and make requests to clients during execution.

✨ New Features

ToolContext Trait

Tools can now communicate with clients using the ToolContext trait:

  • send_log() - Send logging notifications
  • send_progress() - Report progress updates
  • request_sampling() - Request LLM completions from client
  • request_elicitation() - Request structured user input

TransportBridge

Transport-agnostic messaging layer that works with any MCP transport (HTTP/SSE, stdio, WebSocket).

Protocol Enhancements

  • Audio content type (Content::audio())
  • Updated CompleteResult with with_values() constructor
  • PromptMessage::new_resource() for embedded resources
  • Proper EmbeddedResourceContents support

📦 New Example

  • conformance-server - Reference implementation demonstrating all bidirectional features

🔧 API Changes

// Tools can now access context for bidirectional communication
use pulseengine_mcp_server::tool_context::{ToolContext, try_current_context};
async fn my_tool() -> Result<String> {
if let Some(ctx) = try_current_context() {
ctx.send_progress(50, Some(100)).await?;
ctx.send_log(LogLevel::Info, None, json!({"status": "processing"})).await?;
}
Ok("Done".to_string())
}

📊 Conformance

Significantly improved MCP conformance test coverage with bidirectional communication support.

Closes

  • #87 Implement Server-to-Client Bidirectional Communication

Full Changelog: pulseengine/mcp@v0.15.1...v0.16.0

Validation Results

... (truncated)

Commits
  • 415f03e test: add handler transport and tool context tests
  • 01670df test: add tests for new Content and CompleteResult APIs
  • d96f116 test: add comprehensive TransportBridge and context accessor tests
  • 185f967 fix: correct TransportBridge test assertions
  • 4f92470 test: add comprehensive tests for bidirectional communication
  • c5866df chore: bump version to 0.16.0
  • f25a24b feat: implement bidirectional communication for MCP conformance
  • 78dcd2d docs: update code examples for MCP 2025-11-25 API
  • a77b0af docs: fix rustdoc warnings and update README for MCP 2025-11-25
  • 26643e0 refactor(server): simplify handler with helper functions
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [pulseengine-mcp-server](https://github.com/pulseengine/mcp) to permit the latest version.
- [Release notes](https://github.com/pulseengine/mcp/releases)
- [Changelog](https://github.com/pulseengine/mcp/blob/main/CHANGELOG.md)
- [Commits](pulseengine/mcp@v0.11.0...v0.16.0)

---
updated-dependencies:
- dependency-name: pulseengine-mcp-server
  dependency-version: 0.16.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 6, 2026

Labels

The following labels could not be found: rust. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the dependencies Dependency updates label Apr 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants