-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.74 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ipgeolocation-io-mcp",
"mcpName": "io.github.IPGeolocation/ipgeolocation-io-mcp",
"description": "Official MCP server for IP geolocation, IP security, abuse contacts, ASN, timezone, astronomy, and user-agent parsing.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ipgeolocation-io-mcp": "./dist/cli.js"
},
"files": [
"dist",
"icon.png",
"manifest.json",
"server.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && printf '%s\\n' '#!/usr/bin/env node' | cat - dist/cli.js > dist/cli.js.tmp && mv dist/cli.js.tmp dist/cli.js && chmod +x dist/cli.js",
"prepare:mpak": "node scripts/prepare-mpak-package.mjs",
"test": "npm run test:unit && npm run test:integration && npm run test:redteam",
"test:unit": "npm run build && node --test --test-concurrency=1 tests/client.test.mjs tests/response.test.mjs tests/validation.test.mjs",
"test:integration": "npm run build && node --test --test-concurrency=1 tests/tools.integration.test.mjs tests/mcp.protocol.test.mjs",
"test:redteam": "npm run build && node --test --test-concurrency=1 tests/redteam.security.test.mjs",
"test:live": "npm run test:live:free && npm run test:live:paid",
"test:live:free": "npm run build && node tests/live.smoke.mjs free",
"test:live:paid": "npm run build && node tests/live.smoke.mjs paid",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"mcpb",
"ipgeolocation",
"ip-geolocation",
"ip-lookup",
"ip-intelligence",
"geoip",
"geolocation",
"timezone",
"timezone-api",
"astronomy",
"astronomy-api",
"vpn",
"vpn-detection",
"proxy",
"proxy-detection",
"ip-security",
"tor-detection",
"asn-lookup",
"abuse-contact",
"ip-abuse",
"user-agent",
"user-agent-parser",
"ai",
"ai-tools",
"llm",
"claude",
"claude-desktop",
"cursor",
"windsurf",
"vscode",
"vscode-copilot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IPGeolocation/ipgeolocation-io-mcp.git"
},
"homepage": "https://ipgeolocation.io",
"bugs": {
"url": "https://github.com/IPGeolocation/ipgeolocation-io-mcp/issues"
},
"author": "ipgeolocation.io",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"zod": "3.25.76"
},
"overrides": {
"@hono/node-server": "1.19.14",
"express-rate-limit": "8.2.2",
"hono": "4.12.15",
"path-to-regexp": "8.4.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"version": "1.0.19"
}