mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
fix(web): update ChatGPT MCP setup instructions (#1358)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
6f3c835e8f
commit
7e182fca9a
2 changed files with 35 additions and 10 deletions
|
|
@ -650,15 +650,29 @@ export function ConnectAIModal({
|
|||
if (manual.kind === "chatgpt") {
|
||||
return (
|
||||
<div className="space-y-3">
|
||||
<p className="text-xs leading-relaxed text-amber-600 dark:text-amber-500/90">
|
||||
Write-capable custom MCP apps are only supported on
|
||||
Business & Enterprise plans.
|
||||
</p>
|
||||
<ol className="list-decimal space-y-2 pl-5 text-sm text-muted-foreground">
|
||||
<li>Open ChatGPT in your browser.</li>
|
||||
<li>
|
||||
Settings → Apps → Advanced settings → enable
|
||||
Developer mode.
|
||||
Go to Settings → Security and Login → scroll to
|
||||
the bottom to enable Developer mode.
|
||||
</li>
|
||||
<li>
|
||||
Create an app and paste the MCP URL when asked.
|
||||
Go to{" "}
|
||||
<a
|
||||
className="text-primary underline"
|
||||
href="https://chatgpt.com/plugins"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
chatgpt.com/plugins
|
||||
</a>
|
||||
.
|
||||
</li>
|
||||
<li>Paste the URL below.</li>
|
||||
<li>Complete OAuth in ChatGPT.</li>
|
||||
</ol>
|
||||
<div className="relative max-w-full sm:max-w-xl">
|
||||
|
|
|
|||
|
|
@ -502,19 +502,30 @@ export function MCPSteps({ variant = "full" }: MCPStepsProps) {
|
|||
if (manual.kind === "chatgpt") {
|
||||
return (
|
||||
<div className="space-y-3">
|
||||
<p className="text-[12px] leading-relaxed text-amber-500/90">
|
||||
Write-capable custom MCP apps are only supported on
|
||||
Business & Enterprise plans.
|
||||
</p>
|
||||
<ol className="list-decimal space-y-2 pl-5 text-[13px] leading-relaxed text-[#A1A1AA]">
|
||||
<li>Open ChatGPT in your browser.</li>
|
||||
<li>
|
||||
Go to Settings → Apps → Advanced settings → enable
|
||||
Developer mode.
|
||||
Go to Settings → Security and Login → scroll to the
|
||||
bottom to enable Developer mode.
|
||||
</li>
|
||||
<li>
|
||||
Create an app and choose your MCP server URL when
|
||||
asked.
|
||||
</li>
|
||||
<li>
|
||||
Paste the URL below and complete OAuth in ChatGPT.
|
||||
Go to{" "}
|
||||
<a
|
||||
className="text-[#4BA0FA] underline hover:text-[#8BC6FF]"
|
||||
href="https://chatgpt.com/plugins"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
chatgpt.com/plugins
|
||||
</a>
|
||||
.
|
||||
</li>
|
||||
<li>Paste the URL below.</li>
|
||||
<li>Complete OAuth in ChatGPT.</li>
|
||||
</ol>
|
||||
<McpCodeBlock
|
||||
code={CHATGPT_REMOTE_MCP_URL}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue