@@ -35,7 +35,7 @@ static async Task Main(string[] args)
3535
3636 var result = await client . Tools . Execute ( executeParams ) ;
3737 result . Validate ( ) ;
38-
38+
3939 Console . WriteLine ( $ "✅ Tool executed successfully!") ;
4040 Console . WriteLine ( $ " Execution ID: { result . ExecutionID } ") ;
4141 Console . WriteLine ( $ " Status: { result . Status } ") ;
@@ -70,7 +70,7 @@ static async Task Main(string[] args)
7070 Console . WriteLine ( " Authorizing tool access..." ) ;
7171 var authResponse = await client . Tools . Authorize ( authorizeParams ) ;
7272 authResponse . Validate ( ) ;
73-
73+
7474 Console . WriteLine ( $ " ✅ Authorization initiated!") ;
7575 if ( authResponse . Status != null )
7676 {
@@ -81,7 +81,7 @@ static async Task Main(string[] args)
8181 Console . WriteLine ( $ " OAuth URL: { authResponse . URL } ") ;
8282 }
8383 Console . WriteLine ( $ " Note: Complete OAuth flow, then use UserID in Execute()") ;
84-
84+
8585 // After OAuth completes, execute with UserID:
8686 // var executeParams = new ToolExecuteParams
8787 // {
@@ -108,7 +108,7 @@ static async Task Main(string[] args)
108108 tools . Validate ( ) ;
109109 var count = tools . Items ? . Count ?? 0 ;
110110 Console . WriteLine ( $ "✅ Found { count } available tools") ;
111-
111+
112112 if ( tools . Items != null && tools . Items . Count > 0 )
113113 {
114114 Console . WriteLine ( $ " First tool: { tools . Items [ 0 ] . Name } ") ;
0 commit comments