search-fetch-server MCP Server
Overview
The search-fetch-server MCP Server is a TypeScript-based implementation of the Model Context Protocol (MCP) that allows users to manage a simple notes system with features for searching, creating, and summarizing notes.
To use the server, install the necessary dependencies, build the server, and configure it with your application (such as Claude Desktop) to manage notes effectively.
- Resource Management: Access and manage text notes using
note://URIs with metadata. - Note Creation: Create and store new text notes with a title and content. - Fetching Content: Fetch content from a specified URL, with optional markdown conversion using Puppeteer. - Search Functionality: Perform DuckDuckGo searches and retrieve results in JSON format. - Summarization: Generate summaries of stored notes using structured prompts.
- Create and manage personal notes for easy retrieval.
- Fetch and summarize online articles or resources for research.
- Implement a searchable note-taking application for team collaboration.
Add to your AI client
Use these steps to connect search-fetch-server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"search-fetch-server-mcp-nexon33": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"search-fetch-server-mcp-nexon33": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"search-fetch-server-mcp-nexon33": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"search-fetch-server-mcp-nexon33": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"search-fetch-server-mcp-nexon33": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"search-fetch-server-mcp-nexon33": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-search-fetch-server-mcp-nexon33"
]
}
}
}