Query Section/Township/Range from lat/long coordinates using the BLM National Cadastral ArcGIS REST service. Tools: - get_plss_location: human-readable PLSS description - get_plss_details: structured data with full metadata
33 lines
690 B
Markdown
33 lines
690 B
Markdown
# mcblmplss
|
|
|
|
FastMCP server for querying BLM Public Land Survey System (PLSS) data by coordinates.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
# Install and run
|
|
uvx mcblmplss
|
|
|
|
# Add to Claude Code
|
|
claude mcp add plss "uvx mcblmplss"
|
|
```
|
|
|
|
## Tools
|
|
|
|
- **get_plss_location** - Get Section/Township/Range for lat/long coordinates
|
|
- **get_plss_details** - Get full structured PLSS data
|
|
|
|
## Example
|
|
|
|
```
|
|
> get_plss_location(latitude=40.0, longitude=-105.0)
|
|
|
|
Section 10, Township 1N, Range 68W, 6th Meridian
|
|
State: CO
|
|
PLSS ID: CO060010N0680W0SN100
|
|
```
|
|
|
|
## Coverage
|
|
|
|
PLSS data is available for 30 states where federal land surveys were conducted (western/midwestern US). Not available for eastern seaboard states or Texas.
|