-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathserver.json
More file actions
64 lines (64 loc) · 1.95 KB
/
Copy pathserver.json
File metadata and controls
64 lines (64 loc) · 1.95 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.dorukardahan/domain-search-mcp",
"description": "Fast domain availability checker with pricing comparison and AI-powered suggestions.",
"repository": {
"url": "https://github.com/dorukardahan/domain-search-mcp",
"source": "github"
},
"version": "1.2.28",
"packages": [
{
"registryType": "npm",
"identifier": "domain-search-mcp",
"version": "1.2.28",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Pricing backend base URL (recommended)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "PRICING_API_BASE_URL"
},
{
"description": "Optional bearer token for pricing backend",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "PRICING_API_TOKEN"
},
{
"description": "Porkbun API key (BYOK, used only if PRICING_API_BASE_URL is not set)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "PORKBUN_API_KEY"
},
{
"description": "Porkbun API secret (required with PORKBUN_API_KEY)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "PORKBUN_API_SECRET"
},
{
"description": "Namecheap API key (BYOK, used only if PRICING_API_BASE_URL is not set)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "NAMECHEAP_API_KEY"
},
{
"description": "Namecheap API username (required with NAMECHEAP_API_KEY)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "NAMECHEAP_API_USER"
}
]
}
]
}