Helix MCP Server
Enables web searches using the DuckDuckGo search engine via its Python SDK, with no API keys required.
Provides web searches using the Mojeek search engine via HTML parsing, serving as an automatic fallback option.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Helix MCP Serversearch my workspace for TODO comments"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
watchdogto 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.
Related MCP server: Repo Interrogator
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 |
|
| Search the web using DuckDuckGo/Mojeek. |
|
| Downloads a webpage and cleans it to Markdown. |
| None | Indexes all workspace text/code files locally. |
|
| Instantly queries the local index using FTS5 keywords. |
|
| Reads a text/code file (workspace relative). |
|
| Writes content to a file (workspace relative). |
|
| Deletes a file or empty directory. |
|
| Moves or renames files or directories. |
|
| Lists contents inside a workspace folder. |
| 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 | shWindows:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Setup & Installation
Clone this repository and set up dependencies:
git clone https://github.com/b1krams/helix-mcp.git
cd helix-mcp
uv syncRunning Locally
To run the MCP server on stdio transport:
uv run python -m helix_mcp.serverConnecting 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:
uv run pytestFormatting and Linting:
uv run ruff checkMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceA local-first MCP server that provides AI agents with safe codebase access through file discovery, hybrid lexical-semantic search, and project introspection. It features durable local memory and semantic indexing while keeping all data and processing entirely on your local machine.74395MIT
- AlicenseAqualityAmaintenanceA local-first MCP server that enables AI tools to safely inspect and search code repositories, providing indexing, deterministic BM25 search, code outlining, and context bundles without code modification.91MIT
- Alicense-qualityAmaintenanceLocal-first MCP server for safely searching, reading, summarizing, tagging, deduplicating, and organizing local files with scoped access, read-only defaults, and dry-run plans.14MIT
- Alicense-qualityBmaintenanceMCP server enabling local-first web search, fetch, extract, and caching with citeable excerpts, no API key required. Supports research workflows for agents and apps.323MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/b1krams/helix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server