Overview
MCP Server Fetch is a tool designed to facilitate the installation and operation of an MCP server for fetching data efficiently.
To use MCP Server Fetch, clone the repository, install the necessary dependencies using npm, and then start the server with the provided commands.
- Easy installation process with simple commands. - Efficient server functionality for data fetching. - Open-source repository for community contributions.
- Setting up an MCP server for development purposes.
- Fetching data from various sources using the server.
- Customizing the server to enhance data processing capabilities.
Add to your AI client
Use these steps to connect MCP Server Fetch 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": {
"mcp-server-fetch-terrib1e": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}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": {
"mcp-server-fetch-terrib1e": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-fetch-terrib1e": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-fetch-terrib1e": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-fetch-terrib1e": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-fetch-terrib1e": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-fetch-terrib1e"
]
}
}
}FAQ
What should I do if I encounter errors during installation?
Check the repository's issues section for troubleshooting guides or submit a new issue for assistance.
Is MCP Server Fetch suitable for production use?
It is primarily intended for development and testing; for production environments, further optimizations may be needed.
Can I contribute to the MCP Server Fetch project?
Yes! Contributions are welcome. Please follow the contribution guidelines outlined in the repository.