A Model Context Protocol (MCP) server that exposes the Synthetic web search API as a tool for use with Claude and other MCP-compatible applications.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"synthetic-web-search": {
"env": {
"SYNTHETIC_API_KEY": "your_actual_api_key_here"
},
"args": [
"-y",
"synthetic-web-search-mcp@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that exposes the Synthetic web search API as a tool for use with Claude and other MCP-compatible applications.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'synthetic-web-search-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked synthetic-web-search-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Synthetic Web Search Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that exposes the Synthetic web search API as a tool for use with Claude and other MCP-compatible applications.
This server provides a search_web tool that allows MCP clients to perform web searches using the Synthetic API. Search results are returned as formatted JSON containing URL, title, text, and published date fields.
Add the MCP server to Claude Code with a single command:
claude mcp add synthetic-web-search -e SYNTHETIC_API_KEY=your_api_key_here -- npx -y synthetic-web-search-mcp@latest
Replace your_api_key_here with your actual Synthetic API key.
To use this MCP server with Claude Desktop, add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"synthetic-web-search": {
"command": "npx",
"args": ["-y", "synthetic-web-search-mcp@latest"],
"env": {
"SYNTHETIC_API_KEY": "your_actual_api_key_here"
}
}
}
}
After adding the configuration, restart Claude Desktop. You can then use the web search tool in your conversations.
To use this MCP server with opencode, add the following to your opencode configuration:
{
"mcp": {
"synthetic-web-search": {
"type": "local",
"command": ["npx", "-y", "synthetic-web-search-mcp@latest"],
"environment": {
"SYNTHETIC_API_KEY": "your_actual_api_key_here"
},
"enabled": true
}
}
}
Replace your_actual_api_key_here with your actual Synthetic API key. Restart opencode after adding the configuration.
npm install
npm run build
The fastest way to verify the server interactively without any client configuration:
SYNTHETIC_API_KEY=your_key_here \
npx @modelcontextprotocol/inspector node dist/index.js
This opens a browser UI where you can invoke search_web directly. Try:
query only → text is capped at the default 1000 characters.query + max_text_length: 200 → tighter truncation to quickly scan results.query + max_text_length: 5000 → more content when you need full detail.claude mcp add synthetic-web-search \
-e SYNTHETIC_API_KEY=your_key_here \
-- node /absolute/path/to/synthetic-web-search-mcp/dist/index.js
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"synthetic-web-search": {
"command": "node",
"args": ["/absolute/path/to/synthetic-web-search-mcp/dist/index.js"],
"env": {
"SYNTHETIC_API_KEY": "your_key_here"
}
}
}
}
Restart Claude Desktop after saving the file.
Search the web using the Synthetic API.
Arguments:
query (string, required): The search query stringmax_text_length (number, optional, default: 1000): Maximum number of characters to include in the text field of each result. Useful for preventing large snippets from flooding the context window. Results exceeding this length are truncated with .... Pass a larger value when you need the full content of a result.Example:
Search for " TypeScript documentation"
Returns: A JSON array of search r