Back to stacks
Second Brain
by Jonathan S
Build a personal knowledge base: Obsidian, Notion, Google Drive, and persistent Memory.
Servers in this stack
productivity
Obsidian
Read and write notes in your Obsidian vault.
mcp-obsidianproductivity
Notion
Read and write Notion pages, databases, and blocks.
@modelcontextprotocol/server-notionproductivity
Google Drive
Search, read, and manage files in Google Drive.
@modelcontextprotocol/server-gdriveproductivity
Memory
Persistent key-value memory store for AI assistants.
@modelcontextprotocol/server-memoryproductivity
Time
Get current time and perform timezone conversions.
@modelcontextprotocol/server-timeCopy config
// .vscode/mcp.json{ "servers": { "obsidian": { "command": "npx", "args": [ "-y", "mcp-obsidian" ], "type": "stdio" }, "notion": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-notion" ], "type": "stdio" }, "google-drive": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-gdrive" ], "type": "stdio" }, "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ], "type": "stdio" }, "time": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-time" ], "type": "stdio" } }}