Skip to content

Epistates/TurboMCP

v1.0.10 Breaking

This release includes breaking changes for platform teams planning a safe upgrade.

Published 8mo MCP Developer Tools
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

mcp mcp-client mcp-sdk mcp-server mcp-servers rust

Summary

AI summary

TurboMCP v1.0.10 achieves full MCP 2025‑06‑18 compliance with zero breaking changes.

Full changelog

TurboMCP v1.0.10 - Critical MCP Protocol Compliance

Release Date: 2025-09-21

🚨 Executive Summary

TurboMCP v1.0.10 is a critical compliance patch that fixes fundamental MCP 2025-06-18 protocol violations discovered post-v1.0.9 release. This update delivers 100% MCP specification compliance with zero breaking changes.

Key Fixes

  1. ElicitationResponse Structure: Fixed non-compliant message format
  2. Completion Protocol Types: Replaced manual JSON with proper MCP types
  3. SharedClient Feature Parity: Restored all missing MCP protocol methods
  4. Comprehensive Protocol Validation: AST-grep verified compliance across entire codebase

🔧 Critical Protocol Compliance Fixes

1. ElicitationResponse Protocol Violation → FIXED

Issue: ElicitationResponse structure completely violated MCP 2025-06-18 specification.

// ❌ v1.0.9 (NON-COMPLIANT)
ElicitationResponse {
    id: String,           // Not in MCP spec
    data: Value,          // Should be 'content'
    cancelled: bool,      // Should be 'action' enum
}

// ✅ v1.0.10 (MCP 2025-06-18 COMPLIANT)
ElicitationResponse {
    action: ElicitationAction::Accept | Decline | Cancel,  // Proper MCP action
    content: Option<Value>,                                // Optional response data
}

Impact:

  • Before: Completely broken elicitation protocol
  • After: Full MCP-compliant bidirectional user interaction

2. Completion Protocol Types → FIXED

Issue: Completion requests used manual JSON construction instead of proper MCP protocol types.

// ❌ v1.0.9 (MANUAL JSON)
let params = json!({
    "ref": {
        "type": "prompt",
        "name": handler_name
    },
    "argument": {
        "name": "partial",
        "value": argument_value
    }
});

// ✅ v1.0.10 (PROPER MCP TYPES)
let request_params = CompleteRequestParams {
    argument: ArgumentInfo {
        name: "partial".to_string(),
        value: argument_value.to_string(),
    },
    reference: CompletionReference::Prompt(PromptReferenceData {
        name: handler_name.to_string(),
        title: None,
    }),
    context: None,  // Optional completion context
};

Impact:

  • Before: Fragile, error-prone manual JSON construction
  • After: Type-safe, schema-validated MCP protocol messages

3. SharedClient Feature Parity → RESTORED

Issue: SharedClient wrapper was missing 9 essential MCP protocol methods, breaking feature parity with Client.

// ✅ v1.0.10 - RESTORED METHODS IN SharedClient

// Completion & Filesystem
complete()           // IDE autocompletion support
complete_prompt()    // Prompt-specific completion
complete_resource()  // Resource-specific completion
list_roots()         // Filesystem boundary awareness

// Bidirectional Handlers
on_elicitation()     // Server user input requests
on_progress()        // Progress tracking handlers
on_log()            // Log message handlers
on_resource_update() // Resource change notifications

// Capability Checks
has_elicitation_handler()     // Handler registration status
has_progress_handler()        // Progress handler status
has_log_handler()            // Log handler status
has_resource_update_handler() // Resource update handler status

🎉 Migration & Deployment

Zero-Downtime Upgrade Path

# 1. Update Cargo.toml
[dependencies]
turbomcp = "1.0.10"  # was "1.0.9"

# 2. Cargo update (automatic compatibility)
cargo update

# 3. Rebuild (no code changes required)
cargo build --release

Immediate Benefits Post-Upgrade

  • ✅ Restored Functionality: All SharedClient methods now work
  • ✅ MCP Compliance: Full protocol adherence
  • ✅ Enhanced Security: Latest dependency updates where possible
  • ✅ Better Performance: Optimized release artifacts

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track Epistates/TurboMCP

Get notified when new releases ship.

Sign up free

About Epistates/TurboMCP

TurboMCP SDK: Enterprise MCP SDK in Rust

All releases →

Beta — feedback welcome: [email protected]