MCP Catalogs
Home

filesystem vs sarvam-mcp-server

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

filesystem
by modelcontextprotocol
sarvam-mcp-server
by Shobhit-Nagpal
Stars★ 85,748★ 12
30d uses
Score7736
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsTranslationDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month11 mo ago

filesystem · Summary

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

sarvam-mcp-server · Summary

MCP server for Sarvam API integration, providing language processing tools for Indian languages.

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

sarvam-mcp-server · Use cases

  • Processing multilingual content containing Indian languages
  • Translating text between Indian languages with cultural context preservation
  • Analyzing and extracting insights from Hindi or other regional language text

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.

sarvam-mcp-server · Install

Installation

  1. Install via npm: npm install sarvam-mcp-server
  1. Configure Claude Desktop by adding this to your claude_desktop_config.json:
{
  "mcpServers": {
    "sarvam": {
      "command": "npx",
      "args": [
        "-y",
        "sarvam-mcp-server"
      ],
      "env": {
        "SARVAM_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
  1. Or use Docker: docker run -i --rm -e SARVAM_API_KEY=your_api_key_here shbhtngpl/sarvam-mcp-server
Comparison generated from public README + GitHub signals. Last updated automatically.