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-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
ai
Sequential Thinking

Dynamic and reflective problem-solving through sequential thought chains.

@modelcontextprotocol/server-sequential-thinking

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"
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"type": "stdio"
}
}
}