Back to stacks

Search Power User

by Jonathan S

Four search engines in one: Brave, Exa, Tavily, and Perplexity for maximum coverage.

Servers in this stack

search
Brave Search

Web and local search using the Brave Search API.

@modelcontextprotocol/server-brave-search
search
Exa Search

AI-powered web search and content retrieval via Exa.

exa-mcp-server
search
Tavily

Real-time web search optimized for AI agents via Tavily.

tavily-mcp
search
Perplexity

AI-powered search and answers via Perplexity.

web
Fetch

HTTP fetch tool for reading web content and APIs.

@modelcontextprotocol/server-fetch

Copy config

// .vscode/mcp.json
{
"servers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"type": "stdio"
},
"exa": {
"command": "npx",
"args": [
"-y",
"exa-mcp-server"
],
"type": "stdio"
},
"tavily": {
"command": "npx",
"args": [
"-y",
"tavily-mcp"
],
"type": "stdio"
},
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
],
"type": "stdio"
}
}
}