MCP Catalogs
Home

houtini-lm vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

houtini-lm
by houtini-ai
filesystem
by modelcontextprotocol
Stars★ 88★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

houtini-lm · Summary

MCP server that offloads bounded tasks from Claude Code to local/cloud LLMs to reduce token consumption.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

houtini-lm · Use cases

  • Offloading code review and test generation to local LLMs while Claude handles architectural planning
  • Using cloud APIs like DeepSeek for boilerplate code generation to save Claude's expensive tokens
  • Generating commit messages and documentation from diffs using cheaper local models

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

houtini-lm · Install

# For Claude Code
claude mcp add houtini-lm -- npx -y @houtini/lm

# For Claude Desktop
Add to claude_desktop_config.json:
{
  "mcpServers": {
    "houtini-lm": {
      "command": "npx",
      "args": ["-y", "@houtini/lm"],
      "env": {
        "HOUTINI_LM_ENDPOINT_URL": "http://localhost:1234"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.