diff --git a/.gitignore b/.gitignore index 835deec2f..7fdb72658 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ yarn.lock .cursor +# Public directory (large media files) +public/ diff --git a/src/pages/Setting/MCP.tsx b/src/pages/Setting/MCP.tsx index afddacf26..6f037efdd 100644 --- a/src/pages/Setting/MCP.tsx +++ b/src/pages/Setting/MCP.tsx @@ -33,7 +33,17 @@ export default function SettingMCP() { const [showAdd, setShowAdd] = useState(false); const [addType, setAddType] = useState<"local" | "remote">("local"); const [localJson, setLocalJson] = useState( - `{ "mcpServers": { "firecrawl": { "command": "npx", "args": [ "-y", "firecrawl-mcp" ], "env": { "FIRECRAWL_API_KEY": "{{apiKey@string::Get the api key from https://firecrawl.dev/}}" } } } }` + `{ + "mcpServers": { + "sequential-thinking": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-sequential-thinking" + ] + } + } +}` ); const [remoteName, setRemoteName] = useState(""); const [remoteUrl, setRemoteUrl] = useState("");