MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

Free MCP LOCAL [Good Work !]

Created 6/2/2026
Updated about 17 hours ago
Repository documentation and setup instructions

Local MCP (Free Local MCP)

Free, local Model Context Protocol servers for web search and web fetching.

What it does

  • websearch-local — Search the web using DuckDuckGo.
  • webfetch-local — Fetch web pages and return content as Markdown.

Usage

Configure your MCP-compatible agent CLI with:

{
  "mcpServers": {
    "websearch-local": {
      "command": "<PROJECT_DIR>/.venv/bin/python",
      "args": ["<PROJECT_DIR>/websearch.py"]
    },
    "webfetch-local": {
      "command": "<PROJECT_DIR>/.venv/bin/python",
      "args": ["<PROJECT_DIR>/webfetch.py"]
    }
  }
}

Replace <PROJECT_DIR> with the path to this project.

Setup

python3 -m venv .venv || python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Quick Setup
Installation guide for this server

Install Package (if required)

uvx mcp-local

Cursor configuration (mcp.json)

{ "mcpServers": { "pinggdevelop-mcp-local": { "command": "uvx", "args": [ "mcp-local" ] } } }