72 lines
1.9 KiB
Rust
72 lines
1.9 KiB
Rust
|
|
#![allow(
|
||
|
|
dead_code,
|
||
|
|
unused_imports,
|
||
|
|
unused_variables,
|
||
|
|
unused_assignments,
|
||
|
|
unused
|
||
|
|
)]
|
||
|
|
|
||
|
|
// Tools module for enhanced MCP server functionality
|
||
|
|
|
||
|
|
pub mod guidance;
|
||
|
|
pub mod iac;
|
||
|
|
pub mod provisioning_tools;
|
||
|
|
pub mod rag;
|
||
|
|
pub mod settings;
|
||
|
|
|
||
|
|
pub use guidance::{
|
||
|
|
ConfigValidatorTool, Diagnosis, DocFinderTool, DocReference, NextAction, NextActionTool,
|
||
|
|
SystemStatus, SystemStatusTool, TroubleshooterTool,
|
||
|
|
};
|
||
|
|
pub use iac::{
|
||
|
|
CompletenessAnalysis, Detection, DetectionResult, IacTools, InfrastructureRequirement,
|
||
|
|
ValidationResult as IacValidationResult,
|
||
|
|
};
|
||
|
|
pub use provisioning_tools::ProvisioningTools as EnhancedProvisioningTools;
|
||
|
|
pub use rag::{
|
||
|
|
get_rag_status, RagAgentTool, RagAnswer, RagStatus, SearchResultTool, SemanticSearchTool,
|
||
|
|
};
|
||
|
|
pub use settings::SettingsTools;
|
||
|
|
|
||
|
|
// Legacy tools structure for backwards compatibility
|
||
|
|
pub struct ProvisioningTools {
|
||
|
|
// Legacy implementation
|
||
|
|
}
|
||
|
|
|
||
|
|
impl ProvisioningTools {
|
||
|
|
pub fn new(_config: &crate::config::Config) -> Self {
|
||
|
|
Self {}
|
||
|
|
}
|
||
|
|
|
||
|
|
pub fn parse_server_description(
|
||
|
|
&self,
|
||
|
|
_description: &str,
|
||
|
|
) -> anyhow::Result<serde_json::Value> {
|
||
|
|
Ok(serde_json::json!({"description": _description}))
|
||
|
|
}
|
||
|
|
|
||
|
|
pub fn generate_ai_template(
|
||
|
|
&self,
|
||
|
|
_description: &str,
|
||
|
|
_template_type: &str,
|
||
|
|
_complexity: &str,
|
||
|
|
) -> anyhow::Result<String> {
|
||
|
|
Ok(format!(
|
||
|
|
"# Generated {} template\n# {}\n# Complexity: {}",
|
||
|
|
_template_type, _description, _complexity
|
||
|
|
))
|
||
|
|
}
|
||
|
|
|
||
|
|
pub fn get_ai_status(&self) -> anyhow::Result<String> {
|
||
|
|
Ok("AI system status: Available".to_string())
|
||
|
|
}
|
||
|
|
|
||
|
|
pub fn configure_ai(&self, _provider: &str) -> anyhow::Result<String> {
|
||
|
|
Ok(format!("AI configured for provider: {}", _provider))
|
||
|
|
}
|
||
|
|
|
||
|
|
pub fn test_ai_connection(&self) -> anyhow::Result<String> {
|
||
|
|
Ok("AI connection test: Successful".to_string())
|
||
|
|
}
|
||
|
|
}
|