-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
71 lines (71 loc) · 2.3 KB
/
Copy pathserver.json
File metadata and controls
71 lines (71 loc) · 2.3 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.szhygulin/recon-crypto-mcp",
"title": "Recon Crypto MCP",
"description": "Self-custodial crypto portfolio: read EVM DeFi, sign on Ledger via WalletConnect.",
"version": "0.2.2",
"websiteUrl": "https://github.com/szhygulin/recon-crypto-mcp",
"repository": {
"url": "https://github.com/szhygulin/recon-crypto-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "recon-crypto-mcp",
"version": "0.2.2",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "ETHEREUM_RPC_URL",
"description": "Custom Ethereum RPC endpoint (alternative to RPC_PROVIDER + RPC_API_KEY).",
"isRequired": false,
"isSecret": false
},
{
"name": "ARBITRUM_RPC_URL",
"description": "Custom Arbitrum RPC endpoint.",
"isRequired": false,
"isSecret": false
},
{
"name": "POLYGON_RPC_URL",
"description": "Custom Polygon RPC endpoint.",
"isRequired": false,
"isSecret": false
},
{
"name": "RPC_PROVIDER",
"description": "RPC provider name: 'infura' or 'alchemy'. Used together with RPC_API_KEY.",
"isRequired": false,
"isSecret": false
},
{
"name": "RPC_API_KEY",
"description": "API key for the chosen RPC_PROVIDER.",
"isRequired": false,
"isSecret": true
},
{
"name": "ETHERSCAN_API_KEY",
"description": "Etherscan API key for contract verification lookups.",
"isRequired": false,
"isSecret": true
},
{
"name": "ONEINCH_API_KEY",
"description": "1inch Developer Portal API key. Enables 1inch quote comparison in get_swap_quote.",
"isRequired": false,
"isSecret": true
},
{
"name": "WALLETCONNECT_PROJECT_ID",
"description": "WalletConnect Cloud project ID. Required for Ledger Live signing via WalletConnect.",
"isRequired": false,
"isSecret": true
}
]
}
]
}