free-transmission-wildlife
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@free-transmission-wildlifeWhich wildlife areas intersect transmission lines?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI-Assisted Transmission Line and Wildlife Analysis with MCP
Use Case
A wildlife conservation group wants to monitor the potential impact of electrical transmission infrastructure on wildlife and protected lands in California's San Joaquin Valley.
The group has limited funding and cannot continuously perform manual GIS analysis or inspect large spatial datasets using traditional GIS software. They need a simple way to ask spatial questions about transmission lines and wildlife areas and receive analytical results without manually writing SQL or performing GIS operations.
This project uses the Model Context Protocol (MCP) to connect Claude to spatial data stored in GIS files and queried through DuckDB.
Instead of manually opening GIS software and performing spatial analysis, users can ask Claude questions using natural language.
Related MCP server: PostGIS Yukon MCP
Screen Shots

Examples:
Which wildlife areas intersect transmission lines?
Which transmission lines pass through public access lands?
How many transmission line segments intersect wildlife areas?
What wildlife areas are within 1 kilometer of a transmission line?
Show me the transmission lines that have potential impacts on wildlife areas.Claude interprets the request, uses the MCP server to access the spatial data, performs the required DuckDB spatial queries, and returns the results in a readable format.
Objective
The primary objective is to demonstrate how AI, MCP, DuckDB, and spatial data can be combined to create a lightweight GIS analysis assistant.
The project focuses on:
Natural-language access to spatial datasets
Spatial querying without requiring users to write SQL
Transmission line and wildlife-area analysis
Low-cost GIS data processing
Reproducible spatial analysis through DuckDB
Returning analytical results directly through Claude
Data
The project currently works with two spatial datasets:
Transmission Lines
Transmission line infrastructure represented as a Shapefile.
data/
└── transmission_lines/
└── TransmissionLine_CEC.shpWildlife / Public Access Lands
California Department of Fish and Wildlife public access land data represented as a Shapefile.
data/
└── public_lands/
└── CDFW_Public_Access_Lands_[ds3077].shpThese datasets are loaded into DuckDB using the DuckDB Spatial extension.
Architecture
The basic architecture is:
User
|
| Natural-language question
v
Claude
|
| MCP
v
MCP Server
|
| DuckDB Spatial SQL
v
Spatial Datasets
|
+-- Transmission Lines
|
+-- Wildlife / Public Access Lands
|
v
Analysis Result
|
v
Claude ResponseThe MCP server acts as the bridge between Claude and the spatial database layer.
DuckDB performs the actual data processing and spatial operations.
Tech Stack
Python 3.14
DuckDB
DuckDB Spatial
MCP Python
PyArrow
Pandas
Claude
Project Structure
free-transmission-wildlife/
│
├── app/
│ ├── db/
│ │ ├── load_data.py
│ │ └── queries.py
│ │
│ └── server/
│ └── server.py
│
├── data/
│ ├── transmission_lines/
│ │ └── TransmissionLine_CEC.shp
│ │
│ └── public_lands/
│ └── CDFW_Public_Access_Lands_[ds3077].shp
│
├── pyproject.toml
├── uv.lock
├── Makefile
└── README.mdGetting Started
This project uses uv for Python environment and dependency management.
Install the project dependencies:
uv syncDevelopment
Start the MCP server in development mode:
make devThis runs:
uv run mcp dev app/server/server.pyThe development server can be used to test the MCP tools and inspect their behavior.
Claude Installation
Install the MCP server for Claude:
make installThis runs the equivalent of:
uv run mcp install app/server/server.pyOnce installed, the MCP server becomes available to Claude.
Running the Application
After installing the MCP server, open Claude and start asking questions about the spatial datasets.
For example:
Show me the schema of the transmission lines dataset.Show me the schema of the wildlife lands dataset.Find transmission lines that intersect wildlife lands.How many wildlife areas intersect transmission lines?Which transmission lines have the greatest number of wildlife intersections?The MCP server translates these requests into operations against DuckDB.
Spatial Analysis
The project is intended to support spatial operations such as:
Intersection
Within
Distance analysis
Buffer analysis
Geometry inspection
Spatial filtering
Aggregation
Counting intersecting features
Area calculations
Length calculations
For example, an intersection analysis can conceptually be represented as:
SELECT
t.*,
w.*
FROM transmission_lines t
JOIN wildlife_lands w
ON ST_Intersects(t.geom, w.geom);This allows DuckDB to perform the spatial analysis while Claude provides the natural-language interface.
Output
Results are returned through Claude in Markdown.
Example:
Transmission lines intersecting wildlife lands
| Transmission Line | Wildlife Area | Intersection |
|-------------------|---------------|--------------|
| Line A | Area 001 | Yes |
| Line B | Area 014 | Yes |
| Line C | Area 021 | Yes |
Total intersecting transmission lines: 3The goal is to make the analytical result understandable to users without requiring them to understand SQL or DuckDB.
Why DuckDB
DuckDB provides a lightweight analytical database that can query data directly without requiring a traditional database server.
Combined with the Spatial extension, it can perform GIS operations while maintaining a relatively simple architecture.
The project therefore does not require PostgreSQL/PostGIS for this prototype.
The architecture is:
Shapefile / GeoParquet
|
v
DuckDB
|
v
DuckDB Spatial
|
v
MCP Server
|
v
ClaudeThis makes the project suitable for experimentation with AI-assisted GIS analysis.
Future Development
Potential future improvements include:
Migrating from Shapefiles to GeoParquet
Adding more California wildlife datasets
Adding parcel datasets
Adding protected areas
Adding environmental constraint datasets
Adding distance and buffer analysis
Adding automated spatial reports
Adding map visualization
Returning GeoJSON results for web maps
Deploying the spatial data to cloud object storage
Adding larger-scale spatial datasets
Building an AI-assisted GIS analysis workflow
Project Goal
The long-term goal is to demonstrate that spatial analysis can be made more accessible by combining traditional GIS data processing with natural-language AI interfaces.
Instead of requiring every user to know GIS software, SQL, and spatial database operations, the user can describe the question in natural language and let Claude coordinate the analysis through MCP and DuckDB.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceAn Iceberg-native geospatial MCP server powered by DuckDB that provides tools for spatial SQL queries, catalog discovery, and data management. It enables LLM agents to interact with Apache Iceberg lakehouses to perform complex spatial analysis, joins, and aggregations.1
- AlicenseNot gradedqualityFmaintenanceEnables natural language and geospatial queries on PostGIS databases, with 32 tools for spatial analysis, geometry operations, and database management.4MIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that connects AI agents to cloud-native geospatial data via STAC metadata and DuckDB with H3 spatial indexing, enabling zero-configuration SQL queries on terabyte-scale datasets over S3.23BSD 3-Clause
- AlicenseNot gradedqualityCmaintenanceConnects AI assistants (Claude, Cursor, etc.) to QGIS 4.x via MCP, enabling natural language-driven GIS workflows through 37+ tools, including data loading, processing, and spatial analysis.GPL 2.0
Related MCP Connectors
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joshdels/free-transmission-wildlife'
If you have feedback or need assistance with the MCP directory API, please join our Discord server