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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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)
- Install BRAT from Obsidian Community Plugins
- Press
Cmd+Pand select "BRAT: Add a beta plugin" - Enter
klemensgc/modular-context-obsidian-plugin
Manual Install
- Download the latest release files from GitHub
- Copy them to
<vault>/.obsidian/plugins/modular-context/ - 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