mcp-protocol-server 0.2.0

⛔ DEPRECATED: Use mcp-protocol-sdk v0.4.0+ instead. This crate is consolidated into the main SDK.
Documentation
// Copyright (c) 2025 MCP Rust Contributors
// SPDX-License-Identifier: MIT

//! # ⛔ DEPRECATED - MCP Protocol Server
//!
//! **This crate has been DEPRECATED and consolidated into `mcp-protocol-sdk` v0.4.0+**
//!
//! ## 🚀 Migration Instructions
//!
//! Replace this dependency:
//! ```toml
//! [dependencies]
//! mcp-protocol-server = "0.1.0"
//! ```
//!
//! With the unified SDK:
//! ```toml
//! [dependencies]
//! mcp-protocol-sdk = "0.4.0"
//! ```
//!
//! All functionality is preserved in the main SDK with the same API.
//!
//! ## 📦 Why the Change?
//!
//! - **Simpler Dependencies**: One crate instead of multiple
//! - **Better Maintenance**: Unified codebase
//! - **More Features**: The main SDK includes additional functionality
//! - **Same Performance**: No overhead, just better organization
//!
//! ## 🔗 Resources
//!
//! - **New Crate**: [`mcp-protocol-sdk`](https://crates.io/crates/mcp-protocol-sdk)
//! - **Documentation**: [docs.rs/mcp-protocol-sdk](https://docs.rs/mcp-protocol-sdk)
//! - **Repository**: [github.com/mcp-rust/mcp-sdk](https://github.com/mcp-rust/mcp-sdk)

#[deprecated(
    since = "0.2.0",
    note = "Use mcp-protocol-sdk v0.4.0+ instead. This crate is consolidated into the main SDK."
)]
pub fn deprecated_notice() {
    println!("⛔ DEPRECATED: mcp-protocol-server has been consolidated into mcp-protocol-sdk v0.4.0+");
    println!("📦 Please update your Cargo.toml to use: mcp-protocol-sdk = \"0.4.0\"");
    println!("🔗 More info: https://crates.io/crates/mcp-protocol-sdk");
}

// Re-export from main SDK if available
#[cfg(feature = "mcp-protocol-sdk")]
pub use mcp_protocol_sdk::server::*;