namespace MCPForUnity.Editor.Services
{
/// <summary>
/// Service for resolving paths to required tools and supporting user overrides
/// </summary>
public interface IPathResolverService
/// Gets the uvx package manager path (respects override if set)
/// <returns>Path to the uvx executable, or null if not found</returns>
string GetUvxPath();
/// Gets the Claude CLI path (respects override if set)
/// <returns>Path to the claude executable, or null if not found</returns>
string GetClaudeCliPath();
/// Checks if Python is detected on the system
/// <returns>True if Python is found</returns>
bool IsPythonDetected();
/// Checks if Claude CLI is detected on the system
/// <returns>True if Claude CLI is found</returns>
bool IsClaudeCliDetected();
/// Sets an override for the uvx path
/// <param name="path">Path to override with</param>
void SetUvxPathOverride(string path);
/// Sets an override for the Claude CLI path
void SetClaudeCliPathOverride(string path);
/// Clears the uvx path override
void ClearUvxPathOverride();
/// Clears the Claude CLI path override
void ClearClaudeCliPathOverride();
/// Gets whether a uvx path override is active
bool HasUvxPathOverride { get; }
/// Gets whether a Claude CLI path override is active
bool HasClaudeCliPathOverride { get; }
}