diff --git a/packages/plugins/google/src/react/AddGoogleSource.tsx b/packages/plugins/google/src/react/AddGoogleSource.tsx index 0eaada197..08dabf864 100644 --- a/packages/plugins/google/src/react/AddGoogleSource.tsx +++ b/packages/plugins/google/src/react/AddGoogleSource.tsx @@ -132,7 +132,7 @@ export default function AddGoogleSource(props: { return (
-

Add Google

+

Add Google integration

Bundle Google APIs into one integration with a shared OAuth consent.

diff --git a/packages/plugins/graphql/src/react/AddGraphqlSource.tsx b/packages/plugins/graphql/src/react/AddGraphqlSource.tsx index f466f3082..e67fd8ae2 100644 --- a/packages/plugins/graphql/src/react/AddGraphqlSource.tsx +++ b/packages/plugins/graphql/src/react/AddGraphqlSource.tsx @@ -130,7 +130,7 @@ export default function AddGraphqlSource(props: { return (
-

Add GraphQL Source

+

Add GraphQL integration

{slugAlreadyExists && !adding && } @@ -156,7 +156,7 @@ export default function AddGraphqlSource(props: { Cancel
diff --git a/packages/plugins/mcp/src/react/AddMcpSource.tsx b/packages/plugins/mcp/src/react/AddMcpSource.tsx index b6e391dbe..5096fd9bb 100644 --- a/packages/plugins/mcp/src/react/AddMcpSource.tsx +++ b/packages/plugins/mcp/src/react/AddMcpSource.tsx @@ -380,7 +380,7 @@ export default function AddMcpSource(props: { return (
-

Add MCP Source

+

Add MCP integration

Connect to an MCP server to discover and use its tools.

@@ -473,7 +473,7 @@ export default function AddMcpSource(props: { {(probe || isProbing) && ( )} @@ -542,7 +542,7 @@ export default function AddMcpSource(props: { disabled={!stdioCommand.trim() || stdioSlugExists} loading={stdioAdding} > - Add source + Add integration diff --git a/packages/plugins/microsoft/src/react/AddMicrosoftSource.tsx b/packages/plugins/microsoft/src/react/AddMicrosoftSource.tsx index d373b8632..42a4af90c 100644 --- a/packages/plugins/microsoft/src/react/AddMicrosoftSource.tsx +++ b/packages/plugins/microsoft/src/react/AddMicrosoftSource.tsx @@ -108,7 +108,7 @@ export default function AddMicrosoftSource(props: { return (
-

Add Microsoft Graph

+

Add Microsoft integration

Pick Microsoft 365 workloads and connect them through one delegated OAuth consent.

diff --git a/packages/react/src/pages/api-keys.tsx b/packages/react/src/pages/api-keys.tsx index 3d9a2929a..37459ab34 100644 --- a/packages/react/src/pages/api-keys.tsx +++ b/packages/react/src/pages/api-keys.tsx @@ -133,7 +133,7 @@ export function ApiKeysPage() {

- API keys work as PATs and have full access to your account. + API keys work like personal access tokens and have full access to your account.

diff --git a/packages/react/src/pages/policies.tsx b/packages/react/src/pages/policies.tsx index 5b270ce63..f97df9fe3 100644 --- a/packages/react/src/pages/policies.tsx +++ b/packages/react/src/pages/policies.tsx @@ -365,7 +365,7 @@ export function PoliciesPage() {
diff --git a/packages/react/src/pages/secrets.tsx b/packages/react/src/pages/secrets.tsx index efa6e95cd..7847d583e 100644 --- a/packages/react/src/pages/secrets.tsx +++ b/packages/react/src/pages/secrets.tsx @@ -33,7 +33,7 @@ import { isAsyncResultLoading } from "../lib/async-result"; // --------------------------------------------------------------------------- const PROVIDER_LABELS: Record = { - default: "Default store", + encrypted: "Encrypted store", keychain: "Keychain", file: "Local file", memory: "Memory", @@ -41,7 +41,13 @@ const PROVIDER_LABELS: Record = { "workos-vault": "WorkOS Vault", }; -const providerLabel = (key: string): string => PROVIDER_LABELS[key] ?? key; +const providerLabel = (key: string): string => + PROVIDER_LABELS[key] ?? + key + .split(/[-_]/g) + .filter(Boolean) + .map((part) => part.charAt(0).toUpperCase() + part.slice(1)) + .join(" "); export function SecretsPage(props: { showProviderInfo?: boolean }) { useExecutorDocumentTitle("Providers"); @@ -117,13 +123,17 @@ export function SecretsPage(props: { showProviderInfo?: boolean }) { {providerLabel(String(key))} - - {String(key)} - + + {String(key) === "encrypted" + ? "Values you paste are encrypted and stored in this instance's database." + : `${providerLabel(String(key))} credential provider.`} + - provider + + {String(key) === "encrypted" ? "default" : "provider"} + ))