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-obsidian
productivity
Notion

Read and write Notion pages, databases, and blocks.

@modelcontextprotocol/server-notion
productivity
Google Drive

Search, read, and manage files in Google Drive.

@modelcontextprotocol/server-gdrive
productivity
Memory

Persistent key-value memory store for AI assistants.

@modelcontextprotocol/server-memory
productivity
Time

Get current time and perform timezone conversions.

@modelcontextprotocol/server-time

Copy 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"
}
}
}