MCP Catalogs
Home

modular-context-obsidian-plugin vs everything

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

modular-context-obsidian-plugin
by klemensgc
everything
by modelcontextprotocol
Stars★ 88★ 85,748
30d uses
Score4777
Official
Categories
AI / LLM ToolsProductivityCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

modular-context-obsidian-plugin · Summary

An Obsidian plugin that provides MCP tools for Google Workspace and transforms your vault into an LLM-native knowledge base.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

modular-context-obsidian-plugin · Use cases

  • Automating inbox management and email follow-ups using Claude Code
  • Creating meeting preparation materials by analyzing calendar events and related documents
  • Building and maintaining a structured LLM-accessible knowledge base from Obsidian notes

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

modular-context-obsidian-plugin · Install

Via BRAT (Recommended)

  1. Install BRAT from Obsidian Community Plugins
  2. Press Cmd+P and select "BRAT: Add a beta plugin"
  3. Enter klemensgc/modular-context-obsidian-plugin

Manual Install

  1. Download the latest release files from GitHub
  2. Copy them to <vault>/.obsidian/plugins/modular-context/
  3. Enable the plugin in Settings → Community plugins

Claude Desktop Configuration

Add to your config.json:

{
  "mcpServers": {
    "modular-context": {
      "command": "node",
      "args": ["~/.modular-context/mcp-google/dist/index.js"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.