MCP Catalogs
Home

macrostrat-mcp vs filesystem

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

macrostrat-mcp
by blake365
filesystem
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3877
Official
Categories
Knowledge GraphDeveloper ToolsOther
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit9 mo agothis month

macrostrat-mcp · Summary

MCP server for accessing comprehensive geologic data through Macrostrat API.

filesystem · Summary

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

macrostrat-mcp · Use cases

  • Geological research and analysis for specific locations
  • Educational exploration of Earth's geological history
  • Professional geological data visualization and interpretation

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

macrostrat-mcp · Install

Installation

Via Smithery

npx -y @smithery/cli install @blake365/macrostrat-mcp --client claude

Manual Installation

  1. Clone the repository
  2. Run npm install to install dependencies
  3. Run npm run build to build the server

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
    "mcpServers": {
        "macrostrat": {
            "command": "node",
            "args": [
                "/Full/Route/to/Folder/macrostrat/build/index.js"
            ]
        }
    }
}
  1. Restart Claude Desktop

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.