@@ -339,7 +339,7 @@ client = Klavis(
339339 api_key = " YOUR_API_KEY" ,
340340)
341341client.mcp_server.add_servers_to_strata(
342- strata_id = " strata_id " ,
342+ strata_id = " strataId " ,
343343)
344344
345345```
@@ -409,7 +409,7 @@ Delete servers from an existing Strata MCP server.
409409Note: After deleting servers, you need to reconnect the MCP server so that list_tool can be updated to reflect the removed servers.
410410
411411Parameters:
412- - strata_id : The strata server ID (path parameter)
412+ - strataId : The strata server ID (path parameter)
413413- servers: Can be 'ALL' to delete all available Klavis integration, a list of specific server names, or null to delete no servers
414414- externalServers: Query parameter - comma-separated list of external server names to delete
415415
@@ -434,7 +434,7 @@ client = Klavis(
434434 api_key = " YOUR_API_KEY" ,
435435)
436436client.mcp_server.delete_servers_from_strata(
437- strata_id = " strata_id " ,
437+ strata_id = " strataId " ,
438438)
439439
440440```
@@ -530,7 +530,7 @@ client = Klavis(
530530 api_key = " YOUR_API_KEY" ,
531531)
532532client.mcp_server.get_strata_server(
533- strata_id = " strata_id " ,
533+ strata_id = " strataId " ,
534534)
535535
536536```
@@ -602,7 +602,7 @@ client = Klavis(
602602 api_key = " YOUR_API_KEY" ,
603603)
604604client.mcp_server.get_strata_auth(
605- strata_id = " strata_id " ,
605+ strata_id = " strataId " ,
606606 server_name = " serverName" ,
607607)
608608
@@ -648,7 +648,7 @@ client.mcp_server.get_strata_auth(
648648</dl >
649649</details >
650650
651- <details ><summary ><code >client.mcp_server.<a href =" src/klavis/mcp_server/client.py " >set_strata_auth </a >(...)</code ></summary >
651+ <details ><summary ><code >client.mcp_server.<a href =" src/klavis/mcp_server/client.py " >delete_strata_auth </a >(...)</code ></summary >
652652<dl >
653653<dd >
654654
@@ -660,9 +660,9 @@ client.mcp_server.get_strata_auth(
660660<dl >
661661<dd >
662662
663- Sets authentication data for a specific integration within a Strata MCP server.
663+ Deletes authentication data for a specific integration within a Strata MCP server.
664664
665- Accepts either API key authentication or general authentication data .
665+ This will clear the stored authentication credentials, effectively unauthenticating the server .
666666</dd >
667667</dl >
668668</dd >
@@ -677,15 +677,14 @@ Accepts either API key authentication or general authentication data.
677677<dd >
678678
679679``` python
680- from klavis import ApiKeyAuth, Klavis, McpServerName
680+ from klavis import Klavis
681681
682682client = Klavis(
683683 api_key = " YOUR_API_KEY" ,
684684)
685- client.mcp_server.set_strata_auth(
686- strata_id = " strata_id" ,
687- server_name = McpServerName.AFFINITY ,
688- auth_data = ApiKeyAuth(),
685+ client.mcp_server.delete_strata_auth(
686+ strata_id = " strataId" ,
687+ server_name = " serverName" ,
689688)
690689
691690```
@@ -710,15 +709,7 @@ client.mcp_server.set_strata_auth(
710709<dl >
711710<dd >
712711
713- ** server_name:** ` McpServerName ` — The name of the Klavis MCP server to set authentication for (e.g., 'GitHub', 'Jira')
714-
715- </dd >
716- </dl >
717-
718- <dl >
719- <dd >
720-
721- ** auth_data:** ` StrataSetAuthRequestAuthData ` — Authentication data
712+ ** server_name:** ` str ` — The name of the Klavis MCP server to delete authentication for (e.g., 'github', 'jira')
722713
723714</dd >
724715</dl >
@@ -738,7 +729,7 @@ client.mcp_server.set_strata_auth(
738729</dl >
739730</details >
740731
741- <details ><summary ><code >client.mcp_server.<a href =" src/klavis/mcp_server/client.py " >delete_strata_auth </a >(...)</code ></summary >
732+ <details ><summary ><code >client.mcp_server.<a href =" src/klavis/mcp_server/client.py " >set_strata_auth </a >(...)</code ></summary >
742733<dl >
743734<dd >
744735
@@ -750,9 +741,9 @@ client.mcp_server.set_strata_auth(
750741<dl >
751742<dd >
752743
753- Deletes authentication data for a specific integration within a Strata MCP server.
744+ Sets authentication data for a specific integration within a Strata MCP server.
754745
755- This will clear the stored authentication credentials, effectively unauthenticating the server .
746+ Accepts either API key authentication or general authentication data .
756747</dd >
757748</dl >
758749</dd >
@@ -767,14 +758,15 @@ This will clear the stored authentication credentials, effectively unauthenticat
767758<dd >
768759
769760``` python
770- from klavis import Klavis
761+ from klavis import ApiKeyAuth, Klavis, McpServerName
771762
772763client = Klavis(
773764 api_key = " YOUR_API_KEY" ,
774765)
775- client.mcp_server.delete_strata_auth(
776- strata_id = " strata_id" ,
777- server_name = " server_name" ,
766+ client.mcp_server.set_strata_auth(
767+ strata_id = " strataId" ,
768+ server_name = McpServerName.AFFINITY ,
769+ auth_data = ApiKeyAuth(),
778770)
779771
780772```
@@ -799,7 +791,15 @@ client.mcp_server.delete_strata_auth(
799791<dl >
800792<dd >
801793
802- ** server_name:** ` str ` — The name of the Klavis MCP server to delete authentication for (e.g., 'github', 'jira')
794+ ** server_name:** ` McpServerName ` — The name of the Klavis MCP server to set authentication for (e.g., 'GitHub', 'Jira')
795+
796+ </dd >
797+ </dl >
798+
799+ <dl >
800+ <dd >
801+
802+ ** auth_data:** ` Authdata ` — Authentication data
803803
804804</dd >
805805</dl >
0 commit comments