MCP Catalogs
Home

quicken-mac-mcp vs everything

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

quicken-mac-mcp
by dweekly
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4477
Official
Categories
FinanceProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

quicken-mac-mcp · Summary

MCP server providing read-only access to Quicken For Mac financial data via Claude.

everything · Summary

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

quicken-mac-mcp · Use cases

  • Analyze personal spending patterns by category over time
  • Query specific transactions across multiple accounts
  • Track investment holdings and performance

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

quicken-mac-mcp · Install

Recommended Install (Claude Code, includes both Skill and MCP)

claude plugin install quicken-mac-mcp

Claude Desktop (manual JSON)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "quicken": {
      "command": "npx",
      "args": ["-y", "quicken-mac-mcp"]
    }
  }
}

Custom Database Path

If you have multiple Quicken files or the .quicken bundle isn't in ~/Documents, set the QUICKEN_DB_PATH environment variable.

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.