@quantaroute/mcp-server 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@quantaroute/mcp-server",
3
+ "version": "1.0.0",
4
+ "mcpName": "io.github.mapdevsaikat/quantaroute-geocoder",
5
+ "description": "MCP server and REST API for QuantaRoute Geocoding API - Geocode addresses, lookup locations, process DigiPin codes",
6
+ "main": "dist/index.js",
7
+ "type": "module",
8
+ "bin": {
9
+ "quantaroute-mcp-server": "./dist/index.js"
10
+ },
11
+ "scripts": {
12
+ "build": "tsc && npm run sync-client",
13
+ "sync-client": "cp src/client.ts lib/client.ts",
14
+ "dev": "tsc --watch",
15
+ "start": "node dist/index.js",
16
+ "prepare": "npm run build",
17
+ "vercel-build": "echo 'No build needed - Vercel compiles TypeScript automatically'"
18
+ },
19
+ "keywords": [
20
+ "mcp",
21
+ "mcp-server",
22
+ "geocoding",
23
+ "digipin",
24
+ "location-lookup",
25
+ "quantaroute",
26
+ "model-context-protocol",
27
+ "rest-api",
28
+ "vercel",
29
+ "serverless"
30
+ ],
31
+ "author": {
32
+ "name": "QuantaRoute",
33
+ "email": "hello@quantaroute.com",
34
+ "url": "https://quantaroute.com"
35
+ },
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/mapdevsaikat/quantaroute-geocoder.git"
40
+ },
41
+ "engines": {
42
+ "node": ">=18.0.0"
43
+ },
44
+ "dependencies": {
45
+ "@modelcontextprotocol/sdk": "^1.24.3",
46
+ "@vercel/node": "^5.5.15",
47
+ "axios": "^1.7.9"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^20.19.26",
51
+ "typescript": "^5.7.2"
52
+ },
53
+ "overrides": {
54
+ "path-to-regexp": "^6.3.0",
55
+ "esbuild": "^0.25.0",
56
+ "undici": "^5.29.0",
57
+ "glob": "^10.4.5"
58
+ },
59
+ "files": [
60
+ "dist/**/*",
61
+ "README.md",
62
+ "LICENSE"
63
+ ]
64
+ }