Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A local-first MCP server providing secure workspace file operations, offline full-text search, and web search/fetch capabilities without requiring API keys.

README.md

Helix MCP Server

A modern, local-first Model Context Protocol (MCP) server built with Python and managed by uv.

This server is designed to work fully offline (e.g. alongside llama-server running local models like Gemma 2) while providing secure workspace operations, offline searching, and modular web capabilities without requiring paid API keys.

Features

  • 🔌 Standard stdio Transport: Connects seamlessly to standard MCP clients like Claude Desktop.
  • 🛡️ Secure Filesystem Boundary: All file operations (read, write, delete, list, move) are strictly confined to the workspace root directory.
  • 🔎 Offline Search & Indexer: Built-in SQLite FTS5 (Full-Text Search) engine that indices all text and code files in the workspace locally.
  • 👁️ File Change Watcher: Background thread utilizing watchdog to monitor workspace additions, deletions, modifications, and moves.
  • 🌐 Zero-Cost Web Search: Multi-adapter web search using DuckDuckGo (via Python SDK) and Mojeek (via HTML parsing) with automatic fallback. No API keys required.
  • 📄 Clean Web Fetcher: Downloads pages and converts them to readable Markdown, stripping script, style, navigation, and image tags to conserve context window tokens.

Tech Stack

  • Python 3.10+
  • uv: Blazing-fast dependency resolver & package manager.
  • FastMCP: Declarative MCP framework wrapper.
  • SQLite FTS5: Fully offline search indexing.
  • Watchdog: Multi-threaded file systems events catcher.
  • Httpx & BeautifulSoup4: Scraping & page cleanup.

---

MCP Tools Provided

| Tool Name | Arguments | Description | | :--- | :--- | :--- | | web_search | query: str, engine: str = "auto", limit: int = 5 | Search the web using DuckDuckGo/Mojeek. | | web_fetch | url: str | Downloads a webpage and cleans it to Markdown. | | workspace_index | None | Indexes all workspace text/code files locally. | | workspace_search | query: str, limit: int = 10 | Instantly queries the local index using FTS5 keywords. | | file_read | path: str | Reads a text/code file (workspace relative). | | file_write | path: str, content: str | Writes content to a file (workspace relative). | | file_delete | path: str | Deletes a file or empty directory. | | file_move | source: str, destination: str | Moves or renames files or directories. | | directory_list | path: str = "." | Lists contents inside a workspace folder. | | file_changes_get | None | Returns a log of recent workspace file changes. |

---

Getting Started

Prerequisites

Install uv if you haven't already:

  • macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
  • Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Setup & Installation

Clone this repository and set up dependencies: ``bash git clone https://github.com/b1krams/helix-mcp.git cd helix-mcp uv sync ``

Running Locally

To run the MCP server on stdio transport: ``bash uv run python -m helix_mcp.server ``

---

Connecting to Clients

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "helix-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/helix-mcp",
        "run",
        "python",
        "-m",
        "helix_mcp.server"
      ]
    }
  }
}

(Make sure to replace /absolute/path/to/helix-mcp with your actual full workspace path).

---

Development & Testing

Run the offline pytest suite to verify all tools: ``bash uv run pytest ``

Formatting and Linting: ``bash uv run ruff check ``

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.