metis-docs-mcp 0.9.2

MCP server for Metis documentation management system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyhow::Result;

#[derive(Debug, Clone, Default)]
pub struct MetisServerConfig {
    // Configuration is now minimal since we use direct paths
    // Could add logging level, port bindings, etc. in future
}

impl MetisServerConfig {
    pub fn from_env() -> Result<Self> {
        // No environment variables needed for stateless operation
        Ok(Self {})
    }

    pub fn new() -> Self {
        Self {}
    }
}