-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "rdap-mcp",
"version": "1.0.0",
"description": "Simple RDAP MCP Server for domain information lookup",
"mcpName": "io.github.simplebytes-com/rdap-mcp",
"main": "build/index.js",
"type": "module",
"bin": {
"rdap-mcp": "./build/index.js"
},
"files": [
"build/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node build.js",
"prepare": "npm run build",
"start": "node build/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"domain",
"rdap",
"dns",
"domain-lookup"
],
"author": "SimpleBytes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/simplebytes-com/rdap-mcp.git"
},
"homepage": "https://github.com/simplebytes-com/rdap-mcp#readme",
"bugs": {
"url": "https://github.com/simplebytes-com/rdap-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"esbuild": "^0.24.0"
}
}