diff --git a/.vscode/settings.shared.json b/.vscode/settings.shared.json index fa6d0a1..e647f28 100644 --- a/.vscode/settings.shared.json +++ b/.vscode/settings.shared.json @@ -7,6 +7,7 @@ "exafunction", "frontmost", "logpanel", + "modelcontextprotocol", "runonsave", "shellformat", "todesktop", diff --git a/cursor/mcp.json b/cursor/mcp.json index a101560..2412709 100644 --- a/cursor/mcp.json +++ b/cursor/mcp.json @@ -2,6 +2,25 @@ "mcpServers": { "context7": { "url": "https://mcp.context7.com/mcp" + }, + "sequential-thinking": { + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-sequential-thinking", + "--", + "mcp-server-sequential-thinking" + ] + }, + "memory": { + "type": "stdio", + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-memory", + "--", + "mcp-server-memory" + ] } } } diff --git a/mcp.json b/mcp.json index 3d9bcf3..b26e3ab 100644 --- a/mcp.json +++ b/mcp.json @@ -1,8 +1,28 @@ { "servers": { "context7": { - "url": "https://mcp.context7.com/mcp", - "type": "http" + "type": "http", + "url": "https://mcp.context7.com/mcp" + }, + "sequential-thinking": { + "type": "stdio", + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-sequential-thinking", + "--", + "mcp-server-sequential-thinking" + ] + }, + "memory": { + "type": "stdio", + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-memory", + "--", + "mcp-server-memory" + ] } }, "inputs": [] diff --git a/settings.json b/settings.json index 1b4aa50..51fa8ea 100644 --- a/settings.json +++ b/settings.json @@ -282,7 +282,28 @@ "mcp": { "servers": { "context7": { + "type": "http", "url": "https://mcp.context7.com/mcp" + }, + "sequential-thinking": { + "type": "stdio", + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-sequential-thinking", + "--", + "mcp-server-sequential-thinking" + ] + }, + "memory": { + "type": "stdio", + "command": "mise", + "args": [ + "x", + "npm:@modelcontextprotocol/server-memory", + "--", + "mcp-server-memory" + ] } } },