diff --git a/server_manager/messages/master_messages.json b/server_manager/messages/master_messages.json
index db1386ade8..729b23474e 100644
--- a/server_manager/messages/master_messages.json
+++ b/server_manager/messages/master_messages.json
@@ -1051,6 +1051,16 @@
"message": "Access keys",
"description": "This string appears within the server view as a header of a table column that displays server access keys."
},
+ "server_access_keys_tab": {
+ "message": "Access keys ($KEY_COUNT$)",
+ "description": "This string is a tab header indicating to the user that they're currently managing their access keys.",
+ "placeholders": {
+ "KEY_COUNT": {
+ "content": "{keyCount}",
+ "example": "12"
+ }
+ }
+ },
"server_connections": {
"message": "Connections",
"description": "This string appears within the server view as a header of the section that displays server information and access keys."
diff --git a/server_manager/www/ui_components/outline-server-view.ts b/server_manager/www/ui_components/outline-server-view.ts
index 0fbd1118ef..935862475d 100644
--- a/server_manager/www/ui_components/outline-server-view.ts
+++ b/server_manager/www/ui_components/outline-server-view.ts
@@ -549,10 +549,15 @@ export class ServerView extends DirMixin(PolymerElement) {
attr-for-selected="name"
noink=""
>
- [[localize('server-connections')]]
+
+ [[localize('server-connections')]]
+
+
+ [[localize('server-access-key-tab', accessKeyRows.length)]]
+
[[localize('server-metrics')]]