obyte-mcp 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +226 -152
- package/dist/cliArgs.d.ts +8 -2
- package/dist/cliArgs.js +37 -4
- package/dist/cliArgs.js.map +1 -1
- package/dist/config.d.ts +4 -1
- package/dist/config.js +46 -17
- package/dist/config.js.map +1 -1
- package/dist/configSnippets.d.ts +19 -4
- package/dist/configSnippets.js +97 -48
- package/dist/configSnippets.js.map +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/envelope.d.ts +3 -3
- package/dist/envelope.js.map +1 -1
- package/dist/index.js +27 -5
- package/dist/index.js.map +1 -1
- package/dist/install.d.ts +10 -0
- package/dist/install.js +139 -0
- package/dist/install.js.map +1 -0
- package/dist/obyteClient.d.ts +10 -2
- package/dist/obyteClient.js +8 -0
- package/dist/obyteClient.js.map +1 -1
- package/dist/resources.js +4 -1
- package/dist/resources.js.map +1 -1
- package/dist/schemas.d.ts +121 -1
- package/dist/schemas.js +34 -17
- package/dist/schemas.js.map +1 -1
- package/dist/server.js +6 -3
- package/dist/server.js.map +1 -1
- package/dist/setup.js +9 -3
- package/dist/setup.js.map +1 -1
- package/dist/tools.d.ts +2 -2
- package/dist/tools.js +79 -56
- package/dist/tools.js.map +1 -1
- package/dist/types.d.ts +24 -9
- package/package.json +8 -3
- package/server.json +89 -0
package/server.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.taump/obyte-mcp",
|
|
4
|
+
"title": "Obyte MCP",
|
|
5
|
+
"description": "Local stdio MCP server that serves both Obyte mainnet and testnet: hubs, autonomous agents, balances, units, AA state, AA dry runs, and token symbols. Each tool takes an optional network.",
|
|
6
|
+
"websiteUrl": "https://github.com/Taump/obyte-mcp",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/Taump/obyte-mcp",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
11
|
+
"version": "0.1.2",
|
|
12
|
+
"packages": [
|
|
13
|
+
{
|
|
14
|
+
"registryType": "npm",
|
|
15
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
16
|
+
"identifier": "obyte-mcp",
|
|
17
|
+
"version": "0.1.2",
|
|
18
|
+
"runtimeHint": "npx",
|
|
19
|
+
"transport": {
|
|
20
|
+
"type": "stdio"
|
|
21
|
+
},
|
|
22
|
+
"packageArguments": [
|
|
23
|
+
{
|
|
24
|
+
"type": "named",
|
|
25
|
+
"name": "--network",
|
|
26
|
+
"description": "Default Obyte network used when a tool call omits the network argument. Both networks stay available regardless.",
|
|
27
|
+
"default": "mainnet",
|
|
28
|
+
"choices": ["mainnet", "testnet"]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "named",
|
|
32
|
+
"name": "--mainnet-hub",
|
|
33
|
+
"description": "Custom mainnet hub URL. Must be https, except http localhost is allowed for development.",
|
|
34
|
+
"isRequired": false
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "named",
|
|
38
|
+
"name": "--testnet-hub",
|
|
39
|
+
"description": "Custom testnet hub URL. Must be https, except http localhost is allowed for development.",
|
|
40
|
+
"isRequired": false
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "named",
|
|
44
|
+
"name": "--testnet-token-registry",
|
|
45
|
+
"description": "Testnet token registry AA address. Testnet symbol lookups need an explicit registry when used.",
|
|
46
|
+
"isRequired": false
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"environmentVariables": [
|
|
50
|
+
{
|
|
51
|
+
"name": "OBYTE_NETWORK",
|
|
52
|
+
"description": "Default Obyte network used when a tool call omits the network argument. Both networks stay available.",
|
|
53
|
+
"default": "mainnet",
|
|
54
|
+
"choices": ["mainnet", "testnet"],
|
|
55
|
+
"isRequired": false,
|
|
56
|
+
"isSecret": false
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "OBYTE_MAINNET_HUB_ADDRESS",
|
|
60
|
+
"description": "Custom mainnet hub URL. Must be https, except http localhost is allowed for development.",
|
|
61
|
+
"isRequired": false,
|
|
62
|
+
"isSecret": false
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "OBYTE_TESTNET_HUB_ADDRESS",
|
|
66
|
+
"description": "Custom testnet hub URL. Must be https, except http localhost is allowed for development.",
|
|
67
|
+
"isRequired": false,
|
|
68
|
+
"isSecret": false
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "OBYTE_TESTNET_TOKEN_REGISTRY_ADDRESS",
|
|
72
|
+
"description": "Testnet token registry AA address for symbol and decimals lookups.",
|
|
73
|
+
"isRequired": false,
|
|
74
|
+
"isSecret": false
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"_meta": {
|
|
80
|
+
"io.modelcontextprotocol.registry/publisher-provided": {
|
|
81
|
+
"tools": ["npm", "mcp-publisher"],
|
|
82
|
+
"transport": "stdio",
|
|
83
|
+
"networkDefaults": {
|
|
84
|
+
"mainnetHub": "https://obyte.org/api",
|
|
85
|
+
"testnetHub": "https://testnet.obyte.org/api"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|