chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MCPForUnity.Editor.Services.Transport
|
||||
{
|
||||
/// <summary>
|
||||
/// Abstraction for MCP transport implementations (e.g. WebSocket push, stdio).
|
||||
/// </summary>
|
||||
public interface IMcpTransportClient
|
||||
{
|
||||
bool IsConnected { get; }
|
||||
string TransportName { get; }
|
||||
TransportState State { get; }
|
||||
|
||||
Task<bool> StartAsync();
|
||||
Task StopAsync();
|
||||
Task<bool> VerifyAsync();
|
||||
Task ReregisterToolsAsync();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user