Skip to content

Commit c7f2177

Browse files
committed
chore: apply code review suggestions
1 parent 35b31b5 commit c7f2177

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

INSTALLATION.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Geocoding MCP Desktop Extension - Installation Guide
22

33
## Overview
4-
This guide will help you install and configure the Geocoding MCP Desktop Extension (DXT) for Claude Desktop.
4+
This guide will help you install and configure the Geocoding MCP Desktop Extension (MCPB) for Claude Desktop.
55

66
## Prerequisites
77
- Claude Desktop application installed
@@ -12,15 +12,15 @@ This guide will help you install and configure the Geocoding MCP Desktop Extensi
1212

1313
### Method 1: Manual Installation (Recommended)
1414

15-
1. **Locate the DXT file**
16-
- Find the `mcp.dxt` file in your project directory
15+
1. **Locate the MCPB file**
16+
- Find the `mcp.mcpb` file in your project directory
1717
- File size: ~44MB
1818

1919
2. **Install via Claude Desktop**
2020
- Open Claude Desktop
2121
- Go to Settings → Extensions
2222
- Click "Install Extension"
23-
- Select the `mcp.dxt` file
23+
- Select the `mcp.mcpb` file
2424
- Follow the installation prompts
2525

2626
3. **Verify Installation**
@@ -31,11 +31,11 @@ This guide will help you install and configure the Geocoding MCP Desktop Extensi
3131
### Method 2: Command Line Installation (Advanced)
3232

3333
```bash
34-
# If you have the DXT CLI installed
35-
dxt install mcp.dxt
34+
# If you have the MCPB CLI installed
35+
mcpb install mcp.mcpb
3636

3737
# Or using bunx
38-
bunx @anthropic-ai/dxt install mcp.dxt
38+
bunx @anthropic-ai/mcpb install mcp.mcpb
3939
```
4040

4141
## Configuration
@@ -48,13 +48,13 @@ Once installed, you can use the following tools in Claude Desktop:
4848

4949
### Geocode Tool
5050
Convert addresses to coordinates:
51-
```
51+
```text
5252
Find the coordinates for "Times Square, New York"
5353
```
5454

5555
### Reverse Geocode Tool
5656
Convert coordinates to addresses:
57-
```
57+
```text
5858
What address is at coordinates 40.7580, -73.9855?
5959
```
6060

@@ -124,10 +124,10 @@ To remove the extension:
124124

125125
## Version Information
126126

127-
- **Extension Version**: 1.0.0
128-
- **DXT Version**: 0.1
127+
- **Extension Version**: 1.x
128+
- **MCPB Version**: 0.2
129129
- **MCP SDK Version**: Latest
130-
- **Node.js Compatibility**: 18.x, 20.x, 22.x
130+
- **Node.js Compatibility**: 18.x and above
131131

132132
---
133133

MCPB_README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A Desktop Extension (MCPB) for geocoding and reverse geocoding using the OpenStr
1616
### Prerequisites
1717

1818
- Claude Desktop (version 1.0.0 or higher)
19-
- Node.js runtime (version 16.0.0 or higher)
19+
- Node.js runtime (version 18.0.0 or higher)
2020
- Compatible with macOS, Windows, and Linux
2121

2222
### Install the Extension
@@ -45,7 +45,7 @@ Once installed, the extension provides two main tools:
4545
Convert an address or location description to coordinates.
4646

4747
**Example Usage:**
48-
```
48+
```text
4949
Geocode "1600 Amphitheatre Parkway, Mountain View, CA"
5050
```
5151

@@ -65,7 +65,7 @@ Geocode "1600 Amphitheatre Parkway, Mountain View, CA"
6565
Convert coordinates to an address.
6666

6767
**Example Usage:**
68-
```
68+
```text
6969
Reverse geocode coordinates 37.4224764, -122.0842499
7070
```
7171

eslint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineConfig(
1010
},
1111
{
1212
languageOptions: {
13-
globals: globals.browser,
13+
globals: globals.node,
1414
parserOptions: {
1515
projectService: true,
1616
tsconfigRootDir: import.meta.dirname,

0 commit comments

Comments
 (0)