-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathserver.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.tonnode/mcp",
"title": "TONNode — TON blockchain access",
"description": "Liteserver access to TON: balances, account state, transactions, get-methods over native ADNL — plus non-custodial DEX swaps, cross-chain swaps, and TON wallet generation.",
"repository": {
"url": "https://github.com/tonnode/mcp",
"source": "github"
},
"websiteUrl": "https://tonnode.io/mcp",
"version": "0.9.0",
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.tonnode.io/mcp"
}
],
"packages": [
{
"registryType": "npm",
"identifier": "@tonnode/mcp",
"version": "0.9.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "TON_LITESERVERS",
"description": "Optional JSON array of private liteserver entries: [{\"ip\":\"host\",\"port\":41000,\"key\":\"<base64 ed25519>\"}]. Defaults to the public global config.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "TON_NETWORK",
"description": "Set to \"testnet\" to use the testnet global config.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}