@sthan/mcp-server 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +96 -96
  2. package/dist/index.js +115 -42
  3. package/package.json +55 -55
package/README.md CHANGED
@@ -1,96 +1,96 @@
1
- # @sthan/mcp-server
2
-
3
- MCP server for [sthan.io](https://sthan.io) — US address verification, parsing, autocomplete, geocoding, and IP geolocation.
4
-
5
- Works with Claude Code, Cursor, VS Code, Windsurf, and any MCP-compatible client.
6
-
7
- ## Setup
8
-
9
- ### 1. Get an API key
10
-
11
- Sign up at [sthan.io](https://sthan.io) (free tier, no credit card required). Create an API key from your [dashboard](https://sthan.io/dashboard).
12
-
13
- ### 2. Configure your client
14
-
15
- **Claude Code** (`~/.claude/mcp.json` or project `.claude/mcp.json`):
16
-
17
- ```json
18
- {
19
- "mcpServers": {
20
- "sthan": {
21
- "command": "npx",
22
- "args": ["@sthan/mcp-server"],
23
- "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
24
- }
25
- }
26
- }
27
- ```
28
-
29
- **Cursor** (`.cursor/mcp.json`):
30
-
31
- ```json
32
- {
33
- "mcpServers": {
34
- "sthan": {
35
- "command": "npx",
36
- "args": ["@sthan/mcp-server"],
37
- "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
38
- }
39
- }
40
- }
41
- ```
42
-
43
- **VS Code** (`settings.json`):
44
-
45
- ```json
46
- {
47
- "mcp.servers": {
48
- "sthan": {
49
- "command": "npx",
50
- "args": ["@sthan/mcp-server"],
51
- "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
52
- }
53
- }
54
- }
55
- ```
56
-
57
- ## Tools
58
-
59
- | Tool | Description |
60
- |------|-------------|
61
- | `sthan_verify_address` | Verify a US address for deliverability. Returns DPV confirmation, ZIP+4, carrier route. |
62
- | `sthan_parse_address` | Parse freeform address text into structured components (street, city, state, zip, unit). |
63
- | `sthan_autocomplete_address` | Get address suggestions from partial input. Sub-100ms response time. |
64
- | `sthan_autocomplete_city` | Get US city suggestions from partial input. |
65
- | `sthan_autocomplete_zipcode` | Get US ZIP code suggestions from partial input. |
66
- | `sthan_geocode` | Convert a US address to latitude/longitude coordinates. |
67
- | `sthan_reverse_geocode` | Convert coordinates to the nearest US street address. |
68
- | `sthan_ip_geolocation` | Look up geographic location of an IPv4 or IPv6 address. |
69
-
70
- ## Environment variables
71
-
72
- | Variable | Required | Description |
73
- |----------|----------|-------------|
74
- | `STHAN_API_KEY` | Yes | Your sthan.io API key (`sthan_test_*` or `sthan_live_*`) |
75
- | `STHAN_API_URL` | No | Override base URL (default: `https://api.sthan.io`) |
76
-
77
- ## Examples
78
-
79
- Once configured, just ask your AI assistant naturally:
80
-
81
- - "Is 123 Main St, New York, NY 10001 a real address?"
82
- - "Parse this address: apt 2b 500 broadway new york ny"
83
- - "What are the coordinates for the White House?"
84
- - "What address is at 40.7128, -74.0060?"
85
- - "Where is IP 8.8.8.8 located?"
86
-
87
- ## Links
88
-
89
- - [API docs](https://sthan.io/docs)
90
- - [Pricing](https://sthan.io/pricing/united-states)
91
- - [OpenAPI spec](https://api.sthan.io/openapi.json)
92
- - [AI reference](https://api.sthan.io/llms-full.txt)
93
-
94
- ## License
95
-
96
- MIT
1
+ # @sthan/mcp-server
2
+
3
+ MCP server for [sthan.io](https://sthan.io) — US address verification, parsing, autocomplete, geocoding, and IP geolocation.
4
+
5
+ Works with Claude Code, Cursor, VS Code, Windsurf, and any MCP-compatible client.
6
+
7
+ ## Setup
8
+
9
+ ### 1. Get an API key
10
+
11
+ Sign up at [sthan.io](https://sthan.io) (free tier, no credit card required). Create an API key from your [dashboard](https://sthan.io/dashboard).
12
+
13
+ ### 2. Configure your client
14
+
15
+ **Claude Code** (`~/.claude/mcp.json` or project `.claude/mcp.json`):
16
+
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "sthan": {
21
+ "command": "npx",
22
+ "args": ["@sthan/mcp-server"],
23
+ "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
24
+ }
25
+ }
26
+ }
27
+ ```
28
+
29
+ **Cursor** (`.cursor/mcp.json`):
30
+
31
+ ```json
32
+ {
33
+ "mcpServers": {
34
+ "sthan": {
35
+ "command": "npx",
36
+ "args": ["@sthan/mcp-server"],
37
+ "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
38
+ }
39
+ }
40
+ }
41
+ ```
42
+
43
+ **VS Code** (`settings.json`):
44
+
45
+ ```json
46
+ {
47
+ "mcp.servers": {
48
+ "sthan": {
49
+ "command": "npx",
50
+ "args": ["@sthan/mcp-server"],
51
+ "env": { "STHAN_API_KEY": "sthan_test_your_api_key_here" }
52
+ }
53
+ }
54
+ }
55
+ ```
56
+
57
+ ## Tools
58
+
59
+ | Tool | Description |
60
+ |------|-------------|
61
+ | `sthan_verify_address` | Verify a US address for deliverability. Returns DPV confirmation, ZIP+4, carrier route. |
62
+ | `sthan_parse_address` | Parse freeform address text into structured components (street, city, state, zip, unit). |
63
+ | `sthan_autocomplete_address` | Get address suggestions from partial input. Sub-100ms response time. |
64
+ | `sthan_autocomplete_city` | Get US city suggestions from partial input. |
65
+ | `sthan_autocomplete_zipcode` | Get US ZIP code suggestions from partial input. |
66
+ | `sthan_geocode` | Convert a US address to latitude/longitude coordinates. |
67
+ | `sthan_reverse_geocode` | Convert coordinates to the nearest US street address. |
68
+ | `sthan_ip_geolocation` | Look up geographic location of an IPv4 or IPv6 address. |
69
+
70
+ ## Environment variables
71
+
72
+ | Variable | Required | Description |
73
+ |----------|----------|-------------|
74
+ | `STHAN_API_KEY` | Yes | Your sthan.io API key (`sthan_test_*` or `sthan_live_*`) |
75
+ | `STHAN_API_URL` | No | Override base URL (default: `https://api.sthan.io`) |
76
+
77
+ ## Examples
78
+
79
+ Once configured, just ask your AI assistant naturally:
80
+
81
+ - "Is 123 Main St, New York, NY 10001 a real address?"
82
+ - "Parse this address: apt 2b 500 broadway new york ny"
83
+ - "What are the coordinates for the White House?"
84
+ - "What address is at 40.7128, -74.0060?"
85
+ - "Where is IP 8.8.8.8 located?"
86
+
87
+ ## Links
88
+
89
+ - [API docs](https://sthan.io/docs)
90
+ - [Pricing](https://sthan.io/pricing/united-states)
91
+ - [OpenAPI spec](https://api.sthan.io/openapi.json)
92
+ - [AI reference](https://api.sthan.io/llms-full.txt)
93
+
94
+ ## License
95
+
96
+ MIT
package/dist/index.js CHANGED
@@ -17,15 +17,32 @@ function getClient() {
17
17
  baseUrl: process.env.STHAN_API_URL,
18
18
  });
19
19
  }
20
+ // Every tool is a read-only lookup against the sthan.io API: no state is
21
+ // changed, repeating a call with the same input returns the same result, and
22
+ // it reaches an external service (the open world of US addresses).
23
+ const READ_ONLY_HINTS = {
24
+ readOnlyHint: true,
25
+ destructiveHint: false,
26
+ idempotentHint: true,
27
+ openWorldHint: true,
28
+ };
20
29
  const server = new mcp_js_1.McpServer({
21
30
  name: "sthan",
22
- version: "0.1.2",
31
+ version: "0.1.4",
23
32
  });
24
33
  // --- Tool 1: Verify US Address ---
25
- server.tool("sthan_verify_address", "Verify if a US address is real and deliverable. Returns standardized format, ZIP+4, delivery point validation (DPV), and whether it's residential or commercial. Use when someone asks 'is this address real?', 'can mail be delivered here?', or 'verify this address'.", {
26
- address: zod_1.z
27
- .string()
28
- .describe("Full or partial US address in any format. Examples: '123 Main St, New York, NY 10001', '123 main st nyc', '1600 Pennsylvania Ave Washington DC'"),
34
+ server.registerTool("sthan_verify_address", {
35
+ title: "Verify US Address",
36
+ description: "Verify whether a US street address is real and deliverable. Returns the standardized address, ZIP+4, county, a deliverability status, and the dpvConfirmation code (Y = deliverable; N = not found or undeliverable; S = address found but the apartment/unit is missing or unconfirmed; blank = unknown). " +
37
+ "Use to confirm a US mailing address, clean address data, or check an address before shipping. " +
38
+ "Do not use for non-US addresses, to get map coordinates (use sthan_geocode), or to only split an address into fields without checking it (use sthan_parse_address). " +
39
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message, for example an invalid API key, an exceeded rate limit, or an address that could not be found.",
40
+ inputSchema: {
41
+ address: zod_1.z
42
+ .string()
43
+ .describe("Full or partial US address in any format. Examples: '123 Main St, New York, NY 10001', '123 main st nyc', '1600 Pennsylvania Ave Washington DC'"),
44
+ },
45
+ annotations: READ_ONLY_HINTS,
29
46
  }, async ({ address }) => {
30
47
  try {
31
48
  const response = await getClient().verifyAddress(address);
@@ -38,10 +55,18 @@ server.tool("sthan_verify_address", "Verify if a US address is real and delivera
38
55
  }
39
56
  });
40
57
  // --- Tool 2: Parse US Address ---
41
- server.tool("sthan_parse_address", "Parse a freeform US address string into structured components (street number, name, type, direction, unit, city, state, zip). Use when someone has messy or unstructured address text and needs it broken into parts.", {
42
- address: zod_1.z
43
- .string()
44
- .describe("Raw address text to parse. Freeform input, abbreviations OK. Example: 'apt 2b 500 broadway new york ny'"),
58
+ server.registerTool("sthan_parse_address", {
59
+ title: "Parse US Address",
60
+ description: "Break a freeform US address string into structured components: address number, street name, pre/post directionals, street type, unit type and number, city, state, ZIP, and ZIP+4. " +
61
+ "Use when you have messy or unstructured US address text and need the individual fields. " +
62
+ "This parses and standardizes only; it does not confirm the address is deliverable (use sthan_verify_address) and does not return coordinates (use sthan_geocode). " +
63
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message, for example an invalid API key or an exceeded rate limit.",
64
+ inputSchema: {
65
+ address: zod_1.z
66
+ .string()
67
+ .describe("Raw address text to parse. Freeform input, abbreviations OK. Example: 'apt 2b 500 broadway new york ny'"),
68
+ },
69
+ annotations: READ_ONLY_HINTS,
45
70
  }, async ({ address }) => {
46
71
  try {
47
72
  const response = await getClient().parseAddress(address);
@@ -54,10 +79,18 @@ server.tool("sthan_parse_address", "Parse a freeform US address string into stru
54
79
  }
55
80
  });
56
81
  // --- Tool 3: Autocomplete US Address ---
57
- server.tool("sthan_autocomplete_address", "Get address suggestions from partial input. Sub-100ms response time. Returns array of complete US address strings. Use for type-ahead address completion.", {
58
- text: zod_1.z
59
- .string()
60
- .describe("Partial address text (3+ characters recommended). Example: '123 Main'"),
82
+ server.registerTool("sthan_autocomplete_address", {
83
+ title: "Autocomplete US Address",
84
+ description: "Return a list of complete US street-address suggestions for partial input, intended for type-ahead / autocomplete fields. " +
85
+ "Use while a user is typing an address and you want to offer full matches. " +
86
+ "For city-only suggestions use sthan_autocomplete_city; for ZIP-only suggestions use sthan_autocomplete_zipcode; to validate a finished address use sthan_verify_address. " +
87
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message.",
88
+ inputSchema: {
89
+ text: zod_1.z
90
+ .string()
91
+ .describe("Partial address text (3+ characters recommended). Example: '123 Main'"),
92
+ },
93
+ annotations: READ_ONLY_HINTS,
61
94
  }, async ({ text }) => {
62
95
  try {
63
96
  const response = await getClient().autocompleteAddress(text);
@@ -70,15 +103,23 @@ server.tool("sthan_autocomplete_address", "Get address suggestions from partial
70
103
  }
71
104
  });
72
105
  // --- Tool 4: Autocomplete US City ---
73
- server.tool("sthan_autocomplete_city", "Get US city name suggestions from partial input. Returns matching cities with state.", {
74
- text: zod_1.z.string().describe("Partial city name. Example: 'San Fr'"),
75
- display_type: zod_1.z
76
- .number()
77
- .int()
78
- .min(0)
79
- .max(1)
80
- .default(0)
81
- .describe("0 = City, StateCode (e.g. 'San Francisco, CA'). 1 = City, State (e.g. 'San Francisco, California')"),
106
+ server.registerTool("sthan_autocomplete_city", {
107
+ title: "Autocomplete US City",
108
+ description: "Return a list of US city suggestions (with state) for partial input. " +
109
+ "Use for city-field type-ahead, or to resolve a partial city name to its full name and state. " +
110
+ "For full street-address suggestions use sthan_autocomplete_address; for ZIP codes use sthan_autocomplete_zipcode. " +
111
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message.",
112
+ inputSchema: {
113
+ text: zod_1.z.string().describe("Partial city name. Example: 'San Fr'"),
114
+ display_type: zod_1.z
115
+ .number()
116
+ .int()
117
+ .min(0)
118
+ .max(1)
119
+ .default(0)
120
+ .describe("0 = City, StateCode (e.g. 'San Francisco, CA'). 1 = City, State (e.g. 'San Francisco, California')"),
121
+ },
122
+ annotations: READ_ONLY_HINTS,
82
123
  }, async ({ text, display_type }) => {
83
124
  try {
84
125
  const response = await getClient().autocompleteCity(text, display_type);
@@ -91,15 +132,23 @@ server.tool("sthan_autocomplete_city", "Get US city name suggestions from partia
91
132
  }
92
133
  });
93
134
  // --- Tool 5: Autocomplete US ZIP Code ---
94
- server.tool("sthan_autocomplete_zipcode", "Get US ZIP code suggestions from partial input.", {
95
- text: zod_1.z.string().describe("Partial ZIP code. Example: '9021'"),
96
- display_type: zod_1.z
97
- .number()
98
- .int()
99
- .min(0)
100
- .max(3)
101
- .default(0)
102
- .describe("0 = Zip,StateCode. 1 = Zip,State. 2 = Zip-Zip4,StateCode. 3 = Zip-Zip4,State"),
135
+ server.registerTool("sthan_autocomplete_zipcode", {
136
+ title: "Autocomplete US ZIP Code",
137
+ description: "Return a list of US ZIP code suggestions for partial input, each with state (and optionally ZIP+4). " +
138
+ "Use for ZIP-field type-ahead or to expand a partial ZIP. " +
139
+ "For city suggestions use sthan_autocomplete_city; for full addresses use sthan_autocomplete_address. " +
140
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message.",
141
+ inputSchema: {
142
+ text: zod_1.z.string().describe("Partial ZIP code. Example: '9021'"),
143
+ display_type: zod_1.z
144
+ .number()
145
+ .int()
146
+ .min(0)
147
+ .max(3)
148
+ .default(0)
149
+ .describe("0 = Zip,StateCode. 1 = Zip,State. 2 = Zip-Zip4,StateCode. 3 = Zip-Zip4,State"),
150
+ },
151
+ annotations: READ_ONLY_HINTS,
103
152
  }, async ({ text, display_type }) => {
104
153
  try {
105
154
  const response = await getClient().autocompleteZipCode(text, display_type);
@@ -112,10 +161,18 @@ server.tool("sthan_autocomplete_zipcode", "Get US ZIP code suggestions from part
112
161
  }
113
162
  });
114
163
  // --- Tool 6: Forward Geocode US Address ---
115
- server.tool("sthan_geocode", "Convert a US address to latitude/longitude coordinates. Returns accuracy type (rooftop, interpolated, centroid, approximate) and confidence score. Use when someone needs coordinates for an address.", {
116
- address: zod_1.z
117
- .string()
118
- .describe("US address to geocode (freeform text). Example: '1600 Pennsylvania Ave, Washington DC'"),
164
+ server.registerTool("sthan_geocode", {
165
+ title: "Geocode US Address",
166
+ description: "Convert a US address to latitude/longitude coordinates. Returns the coordinates, a formatted address, an accuracy type (rooftop, interpolated, centroid, or approximate), and a confidence score. " +
167
+ "Use when you need map coordinates for an address. " +
168
+ "To go the other way (coordinates to address) use sthan_reverse_geocode; to check deliverability rather than location use sthan_verify_address. " +
169
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message, for example an address that could not be located.",
170
+ inputSchema: {
171
+ address: zod_1.z
172
+ .string()
173
+ .describe("US address to geocode (freeform text). Example: '1600 Pennsylvania Ave, Washington DC'"),
174
+ },
175
+ annotations: READ_ONLY_HINTS,
119
176
  }, async ({ address }) => {
120
177
  try {
121
178
  const response = await getClient().geocodeAddress(address);
@@ -128,9 +185,17 @@ server.tool("sthan_geocode", "Convert a US address to latitude/longitude coordin
128
185
  }
129
186
  });
130
187
  // --- Tool 7: Reverse Geocode ---
131
- server.tool("sthan_reverse_geocode", "Convert latitude/longitude coordinates to the nearest US street address. Returns the address with distance in meters from input coordinates. Use when someone has coordinates and wants the address.", {
132
- latitude: zod_1.z.number().min(-90).max(90).describe("Latitude coordinate"),
133
- longitude: zod_1.z.number().min(-180).max(180).describe("Longitude coordinate"),
188
+ server.registerTool("sthan_reverse_geocode", {
189
+ title: "Reverse Geocode Coordinates",
190
+ description: "Convert latitude/longitude coordinates to the nearest US street address. Returns the address, the distance in meters from the input point, an accuracy type, and a confidence score. " +
191
+ "Use when you have coordinates and need the closest address. US coverage only. " +
192
+ "To go the other way (address to coordinates) use sthan_geocode. " +
193
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message.",
194
+ inputSchema: {
195
+ latitude: zod_1.z.number().min(-90).max(90).describe("Latitude coordinate"),
196
+ longitude: zod_1.z.number().min(-180).max(180).describe("Longitude coordinate"),
197
+ },
198
+ annotations: READ_ONLY_HINTS,
134
199
  }, async ({ latitude, longitude }) => {
135
200
  try {
136
201
  const response = await getClient().reverseGeocode(latitude, longitude);
@@ -143,10 +208,18 @@ server.tool("sthan_reverse_geocode", "Convert latitude/longitude coordinates to
143
208
  }
144
209
  });
145
210
  // --- Tool 8: IP Geolocation ---
146
- server.tool("sthan_ip_geolocation", "Look up the geographic location of an IPv4 or IPv6 address. Returns country, region, city, coordinates, timezone, and postal code. Use when someone wants to know where an IP address is located.", {
147
- ip: zod_1.z
148
- .string()
149
- .describe("IPv4 (e.g. '8.8.8.8') or IPv6 (e.g. '2001:4860:4860::8888') address"),
211
+ server.registerTool("sthan_ip_geolocation", {
212
+ title: "IP Geolocation",
213
+ description: "Look up the approximate geographic location of an IPv4 or IPv6 address. Returns country, region, city, coordinates, timezone, and postal code (some fields may be null when unknown). " +
214
+ "Use to estimate where an IP is located, for example for analytics or choosing a default region. " +
215
+ "This locates IP addresses, not postal addresses; to work with a street address use sthan_verify_address, sthan_parse_address, or sthan_geocode. " +
216
+ "Read-only with no side effects. Requires a sthan.io API key in STHAN_API_KEY; each call counts toward your plan's rate limit (a free tier is available). On failure it returns an error message.",
217
+ inputSchema: {
218
+ ip: zod_1.z
219
+ .string()
220
+ .describe("IPv4 (e.g. '8.8.8.8') or IPv6 (e.g. '2001:4860:4860::8888') address"),
221
+ },
222
+ annotations: READ_ONLY_HINTS,
150
223
  }, async ({ ip }) => {
151
224
  try {
152
225
  const response = await getClient().ipGeolocation(ip);
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@sthan/mcp-server",
3
- "version": "0.1.2",
4
- "mcpName": "io.github.sthan-io/mcp-server",
5
- "description": "MCP server for sthan.io — US address verification, parsing, autocomplete, geocoding, and IP geolocation",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "sthan-mcp-server": "dist/index.js"
10
- },
11
- "files": [
12
- "dist",
13
- "README.md"
14
- ],
15
- "scripts": {
16
- "build": "tsc",
17
- "dev": "tsc --watch",
18
- "start": "node dist/index.js"
19
- },
20
- "keywords": [
21
- "mcp",
22
- "mcp-server",
23
- "model-context-protocol",
24
- "address-verification",
25
- "address-parser",
26
- "address-autocomplete",
27
- "geocoding",
28
- "reverse-geocoding",
29
- "ip-geolocation",
30
- "sthan",
31
- "claude",
32
- "cursor",
33
- "vscode",
34
- "ai",
35
- "ai-tools"
36
- ],
37
- "author": "sthan.io",
38
- "license": "MIT",
39
- "homepage": "https://sthan.io",
40
- "repository": {
41
- "type": "git",
42
- "url": "https://github.com/sthan-io/mcp-server"
43
- },
44
- "engines": {
45
- "node": ">=20"
46
- },
47
- "dependencies": {
48
- "@modelcontextprotocol/sdk": "^1.12.1",
49
- "@sthan/core": "0.1.2"
50
- },
51
- "devDependencies": {
52
- "@types/node": "^25.5.0",
53
- "typescript": "^6.0.2"
54
- }
55
- }
1
+ {
2
+ "name": "@sthan/mcp-server",
3
+ "version": "0.1.4",
4
+ "mcpName": "io.github.sthan-io/mcp-server",
5
+ "description": "MCP server for sthan.io — US address verification, parsing, autocomplete, geocoding, and IP geolocation",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "sthan-mcp-server": "dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "dev": "tsc --watch",
18
+ "start": "node dist/index.js"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "mcp-server",
23
+ "model-context-protocol",
24
+ "address-verification",
25
+ "address-parser",
26
+ "address-autocomplete",
27
+ "geocoding",
28
+ "reverse-geocoding",
29
+ "ip-geolocation",
30
+ "sthan",
31
+ "claude",
32
+ "cursor",
33
+ "vscode",
34
+ "ai",
35
+ "ai-tools"
36
+ ],
37
+ "author": "sthan.io",
38
+ "license": "MIT",
39
+ "homepage": "https://sthan.io",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/sthan-io/mcp-server"
43
+ },
44
+ "engines": {
45
+ "node": ">=20"
46
+ },
47
+ "dependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.12.1",
49
+ "@sthan/core": "0.1.4"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^25.5.0",
53
+ "typescript": "^6.0.2"
54
+ }
55
+ }