//! autoreply MCP Server (Rust)
//!
//! Model Context Protocol server for Bluesky profile and post search functionality.
//! Implements two MCP tools:
//! - `profile(account)` - Retrieve user profile information
//! - `search(account, query)` - Search posts within a user's repository
use Result;
use info;
use tracing_subscriber;
async