Bundle
Claude Desktop starter kit
The classic first five: read and write local files, fetch web pages, remember things between chats, search the web, and think in steps. If you're setting up Claude Desktop for the first time, start here.
5 servers · created Jun 11, 2026
Install all of them at once
Drop into your claude_desktop_config.json or Cursor MCP settings. Replace the ${…} placeholders with your own values.
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/you/projects"
]
},
"fetch": {
"command": "uvx",
"args": [
"mcp-server-fetch"
]
},
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
},
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
} Or install one-by-one
npm install -g @modelcontextprotocol/server-filesystem
uvx mcp-server-fetch
npm install -g @modelcontextprotocol/server-memory
npm install -g @modelcontextprotocol/server-brave-search
npm install -g @modelcontextprotocol/server-sequential-thinking Like this stack? Build your own.
Free account, 30 seconds. Save servers, ship public or private bundles, install one-click into Claude Desktop or Cursor.
Servers in this bundle (5)
- Filesystem · Anthropic · Data
Read, write, and search files on the local filesystem with configurable access boundaries.
- Fetch · Anthropic · Web
Plain HTTP fetch — pull web pages and convert them to clean markdown for the model.
- Memory · Anthropic · AI
Knowledge-graph memory — store entities, observations, and relations across conversations.
- Brave Search · Anthropic · AI
Web + local-business search via the Brave Search API — privacy-first, no Google account required.
- Sequential Thinking · Anthropic · AI
Structured chain-of-thought scaffolding — the model writes its own multi-step plan as MCP calls.