MCP Catalogs
Home

mcp_massive vs filesystem

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

mcp_massive
by massive-com
filesystem
by modelcontextprotocol
Stars★ 332★ 85,748
30d uses
Score5277
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

mcp_massive · Summary

An MCP server providing access to Massive.com financial market data via search, call, and query tools with in-memory SQLite storage.

filesystem · Summary

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

mcp_massive · Use cases

  • Retrieve real-time stock prices, historical market data, and financial fundamentals
  • Calculate financial metrics like Black-Scholes option pricing and moving averages
  • Search through Massive.com API endpoints using natural language queries

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

mcp_massive · Install

Prerequisites

  • Python 3.12+
  • A Massive.com API key
  • Astral UV (v0.4.0+)

Claude Code Installation

npm install -g @anthropic-ai/claude-code
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massive

Claude Desktop Installation

uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
which mcp_massive

Then add to Claude Desktop config:

{
    "mcpServers": {
        "massive": {
            "command": "<path_to_mcp_massive>",
            "env": {
                "MASSIVE_API_KEY": "<your_api_key_here>",
                "HOME": "<your_home_directory>"
            }
        }
    }
}

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.