Navigation
Macrostrat-MCP: Global Geology Access & Precision Workflows - MCP Implementation

Macrostrat-MCP: Global Geology Access & Precision Workflows

Macrostrat-MCP: Power geoscience research and industry workflows with seamless access to global geologic data via the Macrostrat API—precision meets scalability for Earth’s layered secrets.

Research And Data
4.1(164 reviews)
246 saves
114 comments

Users create an average of 26 projects per month with this tool

About Macrostrat-MCP

What is Macrostrat-MCP: Global Geology Access & Precision Workflows?

Macrostrat-MCP is an MCP server designed to integrate with Claude Desktop, enabling seamless access to global geological data and advanced analytical workflows. It provides a bridge between geological datasets and AI-driven tools, allowing users to query, analyze, and visualize geospatial information directly within the Claude environment. The solution prioritizes precision through structured data retrieval and context-aware processing, catering to professionals in geoscience, environmental studies, and resource management.

How to Use Macrostrat-MCP: Global Geology Access & Precision Workflows?

  1. Installation via Smithery: Execute npx -y @smithery/cli install @blake365/macrostrat-mcp --client claude to automate setup.
  2. Manual Configuration: Modify src/index.ts for custom workflows, rebuild with npm build, and restart Claude Desktop.
  3. Integration Steps: Update claude_desktop_config.json with the server path. Verify connectivity via the MCP tool icon in the interface.

Macrostrat-MCP Features

Key Features of Macrostrat-MCP: Global Geology Access & Precision Workflows?

  • Real-Time Data Access: Instant retrieval of global geological datasets, including bedrock composition and stratigraphic layers.
  • Multi-Step Analysis: Perform layered queries to extract insights, such as regional karst topography assessments or erosion pattern analysis.
  • Visualization Output: Generate geo-referenced outputs, including bedrock maps and erosion vulnerability heatmaps.
  • Custom Workflow Design: Extend functionality by modifying server logic to align with specialized research or industry standards.
  • Cross-Platform Compatibility: Supports macOS and Windows environments with node.js-based execution.

Use Cases of Macrostrat-MCP: Global Geology Access & Precision Workflows?

Practical applications include:

  • Geological Surveying: Rapid assessment of subsurface composition for drilling or construction planning.
  • Resource Exploration: Identify mineral-rich zones by analyzing lithological patterns and stratigraphic correlations.
  • Environmental Impact Analysis: Evaluate groundwater vulnerability using karst terrain and fracture zone data.
  • Academic Research: Support studies on regional geological evolution through historical dataset comparisons.
  • Infrastructure Planning: Mitigate geological risks by mapping seismic fault lines and landslide-prone areas.

Macrostrat-MCP FAQ

FAQ: Macrostrat-MCP Troubleshooting & Support

Q: Installation fails with missing dependencies.
A: Ensure node.js 18+ and npm are installed. Run npm install in the project directory before rebuilding.
Q: How to adjust query parameters?
A: Modify the query_parser module in src/ to define custom data filters or output formats.
Q: Does it support Linux?
A: Experimental support exists via WSL2. Full compatibility planned for v2.0.

Content

macrostrat-mcp

Claude MCP server for Macrostrat API

smithery badge

Macrostrat Server MCP server

An MCP server implementation for providing access to the Macrostrat API within Claude Desktop.

Overview

This Model Context Protocol (MCP) server enables AI assistants and applications to:

  • Query comprehensive geologic data and information provided by the Macrostrat API
  • Access geologic units, columns, minerals, timescales, and more
  • Analyze geologic data to improve geological understanding
  • Create graphics and perform data analysis from the data

Users can run queries using natural language.

Sample Output

Q. What is the geologic history of Nashville, TN?

A. Let me check the geological data for Nashville's location.

View Result from find-units from macrostrat (local)

{
  "lat": 36.1627,
  "lng": -86.7816,
  "responseType": "long"
}

Geological History of Nashville, Tennessee

  1. Mesoproterozoic Basement (1.6-1.1 billion years ago)
  • Igneous basement rocks (granite and rhyolite)
  • Part of the ancient North American craton
  1. Early-Middle Cambrian (518-504 million years ago)
  • Rome Formation: Mixed carbonate-siliciclastic sediments
  • Shallow marine environment
  • Part of the developing continental shelf
  1. Middle-Late Cambrian (504-498 million years ago)
  • Conasauga Formation: Limestone and mixed sediments
  • Continued marine deposition
  • Alternating limestone and shale indicating fluctuating sea levels
  1. Late Cambrian-Early Ordovician (498-470 million years ago)
  • Knox Dolomite: Massive dolomite sequence
  • Extensive shallow marine platform
  • Up to 1,200 meters thick
  • Represents long period of stable marine conditions
  1. Middle-Late Ordovician (470-443 million years ago) Several important formations:
  • Stones River Group (including Murfreesboro, Pierce, Lebanon Limestones)
  • Nashville Group (including Hermitage, Bigby-Cannon, Catheys Formations)
  • Primarily limestone deposits
  • Rich in fossils
  • Shallow marine environment
  • Multiple cycles of sea level change
  1. Early-Middle Silurian (443-423 million years ago)
  • Brassfield through Decatur Formations
  • Continued marine limestone deposition
  • Various marine environments from shallow to deeper water
  1. Middle Devonian-Early Mississippian (390-357 million years ago)
  • Pegram Formation through Chattanooga Shale
  • Shift to more clastic (shale) deposition
  • Chattanooga Shale represents deeper, oxygen-poor conditions
  1. Early-Late Mississippian (357-331 million years ago) Several limestone formations:
  • Fort Payne Formation
  • Warsaw Limestone
  • St. Louis Limestone
  • Monteagle Limestone
  • Hartselle Formation
  • Return to carbonate platform conditions
  • Diverse marine environments
  1. Cenozoic to Present
  • Long period of erosion and exposure
  • Development of the current landscape
  • Formation of the Nashville Dome structure
  • River and stream deposits

Key Features

  • The area was predominantly a marine environment for most of its geological history
  • Dominated by limestone formations indicating warm, shallow seas
  • Multiple cycles of sea level change
  • Rich fossil record, especially in Ordovician rocks
  • Part of the Nashville Dome structural feature
  • Long periods of erosion have removed younger rocks
  • Current topography shaped by differential erosion of various limestone units

Present Day Bedrock

The bedrock of Nashville today consists primarily of Ordovician limestone formations exposed at the surface, particularly the Stones River and Nashville Group limestones. These rocks are well exposed in many areas and have influenced the development of local karst topography, including caves and sinkholes that are common in the region.

Installation

Installing via Smithery

To install Macrostrat API Server for Claude Desktop automatically via Smithery:

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

Extra Steps

If you want to make changes to the server you can do so by editing the src/index.ts file.

  • Run npm install to install dependencies
  • Run npm run build to build the server
  • Quit and restart Claude Desktop after making changes

Connecting with Claude Desktop

  1. Open your Claude Desktop configuration at:
* macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
* Windows: `%APPDATA%\Claude\claude_desktop_config.json`
  1. Add the server configuration:
{
    "mcpServers": {
        "macrostrat": {
            "command": "node",
            "args": [
                "/Full/Route/to/Folder/macrostrat/build/index.js"
            ]
        }
    }
}
  1. Close/Quit then restart Claude Desktop

Once you restart you should see a small hammer icon in the lower right corner of the textbox. If you hover over the icon you'll see the number of MCP tools available.

Troubleshooting

If you get errors when running the server you may need to provide the full path to the node command. For example, on macOS: /usr/local/bin/node

Related MCP Servers & Clients