-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
66 lines (66 loc) · 1.59 KB
/
server.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.nirholas/x402-stablecoin",
"title": "x402 Stablecoin MCP",
"description": "MCP server for x402 stablecoin protocol interactions and payments",
"license": "MIT",
"authors": [
{
"name": "nich",
"url": "https://github.com/nirholas"
}
],
"repository": {
"url": "https://github.com/nirholas/x402-stablecoin",
"source": "github"
},
"version": "1.0.0",
"links": {
"homepage": "https://github.com/nirholas/x402-stablecoin",
"bugs": "https://github.com/nirholas/x402-stablecoin/issues"
},
"icons": [
{
"url": "https://raw.githubusercontent.com/nirholas/x402-stablecoin/main/assets/milady.svg",
"type": "svg"
}
],
"packages": [
{
"registryType": "npm",
"identifier": "@x402/monorepo",
"version": "1.0.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "RPC_URL",
"description": "Ethereum RPC endpoint URL",
"required": false,
"secret": false
},
{
"name": "PRIVATE_KEY",
"description": "Wallet private key for transactions",
"required": false,
"secret": true
}
]
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"keywords": [
"x402",
"stablecoin",
"payments",
"mcp",
"defi",
"ethereum"
],
"category": "Blockchain"
}
}
}