metis_mcp_server/
config.rs

1use anyhow::Result;
2
3#[derive(Debug, Clone, Default)]
4pub struct MetisServerConfig {
5    // Configuration is now minimal since we use direct paths
6    // Could add logging level, port bindings, etc. in future
7}
8
9impl MetisServerConfig {
10    pub fn from_env() -> Result<Self> {
11        // No environment variables needed for stateless operation
12        Ok(Self {})
13    }
14
15    pub fn new() -> Self {
16        Self {}
17    }
18}