From 390194265b0212df84c4cae0ca7d43c5912a2b22 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Tue, 13 Jan 2026 11:04:32 +1000 Subject: [PATCH] fix: add API key docs to collection MCP URLs section --- apps/web/src/app/dashboard/collections/[id]/page.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/dashboard/collections/[id]/page.tsx b/apps/web/src/app/dashboard/collections/[id]/page.tsx index e07de3a..244eaca 100644 --- a/apps/web/src/app/dashboard/collections/[id]/page.tsx +++ b/apps/web/src/app/dashboard/collections/[id]/page.tsx @@ -34,7 +34,9 @@ function McpUrlSection({ collectionId }: { collectionId: string }) { "command": "npx", "args": [ "mcp-remote", - "${httpUrl}" + "${httpUrl}", + "--header", + "Authorization: Bearer YOUR_TPMJS_API_KEY" ] } } @@ -139,6 +141,11 @@ function McpUrlSection({ collectionId }: { collectionId: string }) { Claude Desktop, Cursor, or any MCP client + . Requires your{' '} + + TPMJS API key + {' '} + for authentication.

);