Macrostrat

by blake365

7 stars
284 downloads
Not rated
GitHub

About

Integrates the Macrostrat API to enable geological data querying and analysis for earth sciences, resource exploration, and environmental studies.

Details

Author
blake365
Repository
blake365/macrostrat-mcp
GitHub stars
7
Downloads
284
License
MIT License
Categories
Database, Productivity, Developer Tools, Design, AI, Search, Automation, Infrastructure, Other
Tags
#visualization

- 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

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Macrostrat
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 macrostrat-mcp

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Requires Node.js 20 or newer. No install step is needed — npx fetches the server on
first run.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "macrostrat": {
            "cwd": "~/Library/Application Support/Claude",
            "env": {},
            "args": [
                "-y",
                "macrostrat-mcp"
            ],
            "shell": false,
            "command": "npx"
        }
    }
}

Linux

{
    "env": [],
    "args": [
        "-y",
        "macrostrat-mcp"
    ],
    "command": "npx"
}

Macos

{
    "cwd": "~/Library/Application Support/Claude",
    "env": [],
    "args": [
        "-y",
        "macrostrat-mcp"
    ],
    "shell": false,
    "command": "npx"
}

Windows

{
    "cwd": "%APPDATA%\\Claude",
    "env": [],
    "args": [
        "/c",
        "npx",
        "-y",
        "macrostrat-mcp"
    ],
    "shell": false,
    "command": "cmd"
}

macrostrat-mcp

MCP server for Macrostrat API

npm version

<a href="https://glama.ai/mcp/servers/v67anfiq0s">
Macrostrat Server MCP server
</a>

An MCP server providing access to the Macrostrat API from
Claude Desktop, Claude Code, and any other MCP client.

npx -y macrostrat-mcp

No API key required — the Macrostrat API is free and public.

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
- Get geologic map tiles that the LLM can interpret (questionable utility, but might be useful for some applications)
- 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

2. Early-Middle Cambrian (518-504 million years ago)
- Rome Formation: Mixed carbonate-siliciclastic sediments
- Shallow marine environment
- Part of the developing continental shelf

3. 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

4. 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

5. 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

6. Early-Middle Silurian (443-423 million years ago)
- Brassfield through Decatur Formations
- Continued marine limestone deposition
- Various marine environments from shallow to deeper water

7. 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

8. 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

9. 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

Requires Node.js 20 or newer. No install step is needed — npx fetches the server on
first run.

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

2. Add the server configuration:

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

3. Close/Quit then restart Claude Desktop

Once you restart you should see an icon for search and tools. Click this button to see the MCP tools available.

Claude Code

claude mcp add macrostrat -- npx -y macrostrat-mcp

Any other MCP client

The server speaks MCP over STDIO. Run it with npx -y macrostrat-mcp, or install it
globally with npm install -g macrostrat-mcp and run macrostrat-mcp.

Development

npm install        # install dependencies
npm run dev        # run from source over STDIO, no build step
npm run build      # compile TypeScript to build/
npm run typecheck  # type-check without emitting

src/server.ts holds all the tools, prompts, and API calls — that is the file to edit.
src/index.ts is just the STDIO entry point.

To point Claude Desktop at a local build instead of the published package, use
"command": "node" with "args": ["/full/path/to/macrostrat/build/index.js"], and
restart Claude Desktop after each rebuild.

Using it as a library

The server factory is exported if you want to attach a different transport:

import createServer from "macrostrat-mcp";

const server = createServer();
await server.connect(yourTransport);

Troubleshooting

If Claude Desktop cannot find npx, provide its full path (on macOS, typically
/usr/local/bin/npx or /opt/homebrew/bin/npx). The same applies to node if you are
running a local build.29:["$

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.