Back to stacks
Writer
by Jonathan S
A focused writing environment: Obsidian for notes, Notion for publishing, Memory for context.
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-memoryai
Sequential Thinking
Dynamic and reflective problem-solving through sequential thought chains.
@modelcontextprotocol/server-sequential-thinkingCopy 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" }, "sequential-thinking": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sequential-thinking" ], "type": "stdio" } }}