ipgeolocation-io-mcp 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": "ipgeolocation-io-mcp",
3
+ "version": "1.0.0",
4
+ "description": "Official MCP server for ipgeolocation.io APIs. IP geolocation, VPN/proxy detection, timezone, astronomy, user-agent parsing, ASN, company, and IP abuse contact tools for AI assistants.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "ipgeolocation-io-mcp": "./dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18.0.0"
16
+ },
17
+ "scripts": {
18
+ "build": "tsc && printf '%s\\n' '#!/usr/bin/env node' | cat - dist/index.js > dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && chmod +x dist/index.js",
19
+ "prepare": "npm run build",
20
+ "watch": "tsc --watch",
21
+ "inspector": "npx @modelcontextprotocol/inspector"
22
+ },
23
+ "keywords": [
24
+ "mcp",
25
+ "mcp-server",
26
+ "model-context-protocol",
27
+ "ipgeolocation",
28
+ "ip-geolocation",
29
+ "ip-lookup",
30
+ "geoip",
31
+ "geolocation",
32
+ "timezone",
33
+ "astronomy",
34
+ "vpn-detection",
35
+ "proxy-detection",
36
+ "ip-security",
37
+ "asn-lookup",
38
+ "abuse-contact",
39
+ "user-agent",
40
+ "ai-tools",
41
+ "claude",
42
+ "cursor",
43
+ "windsurf",
44
+ "vscode-copilot"
45
+ ],
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/IPGeolocation/ipgeolocation-io-mcp.git"
49
+ },
50
+ "homepage": "https://ipgeolocation.io",
51
+ "bugs": {
52
+ "url": "https://github.com/IPGeolocation/ipgeolocation-io-mcp/issues"
53
+ },
54
+ "author": "ipgeolocation.io",
55
+ "license": "MIT",
56
+ "dependencies": {
57
+ "@modelcontextprotocol/sdk": "^1.12.0",
58
+ "zod": "^3.24.0"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^22.0.0",
62
+ "typescript": "^5.7.0"
63
+ }
64
+ }