obyte-mcp 0.1.1 → 0.2.0
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 +241 -185
- package/dist/amounts.d.ts +43 -0
- package/dist/amounts.js +117 -0
- package/dist/amounts.js.map +1 -0
- 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 +3 -1
- package/dist/constants.js +3 -1
- package/dist/constants.js.map +1 -1
- package/dist/envelope.d.ts +3 -3
- package/dist/envelope.js.map +1 -1
- package/dist/index.js +29 -8
- package/dist/index.js.map +1 -1
- package/dist/install.d.ts +10 -0
- package/dist/install.js +159 -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/prompts.js +26 -18
- package/dist/prompts.js.map +1 -1
- package/dist/resources.js +10 -2
- 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 +26 -4
- package/dist/server.js.map +1 -1
- package/dist/setup.js +9 -3
- package/dist/setup.js.map +1 -1
- package/dist/symbols.js +2 -1
- package/dist/symbols.js.map +1 -1
- package/dist/tools.d.ts +2 -2
- package/dist/tools.js +153 -77
- package/dist/tools.js.map +1 -1
- package/dist/types.d.ts +24 -9
- package/package.json +5 -2
- package/server.json +25 -13
package/dist/tools.js
CHANGED
|
@@ -1,18 +1,31 @@
|
|
|
1
|
+
import { assetExplorerUrl, summarizeBalanceAmounts } from "./amounts.js";
|
|
2
|
+
import { envelopeConfig } from "./config.js";
|
|
1
3
|
import { executeEnvelope } from "./envelope.js";
|
|
2
4
|
import { assertNoSecrets } from "./secretGuard.js";
|
|
3
5
|
import * as schemas from "./schemas.js";
|
|
4
|
-
import { getAssetBySymbol, getDecimalsBySymbolOrAsset,
|
|
6
|
+
import { getAssetBySymbol, getDecimalsBySymbolOrAsset, getSymbolByAsset, resolveAsset } from "./symbols.js";
|
|
5
7
|
import { textResult } from "./toolResult.js";
|
|
6
|
-
export function registerObyteTools(server,
|
|
7
|
-
const context = { server,
|
|
8
|
+
export function registerObyteTools(server, clients, config) {
|
|
9
|
+
const context = { server, clients, config };
|
|
8
10
|
for (const tool of [...recommendedTools(context), ...rawTools(context), ...symbolTools(context)]) {
|
|
9
11
|
registerTool(context, tool);
|
|
10
12
|
}
|
|
11
13
|
}
|
|
14
|
+
function resolveNetwork(value, defaultNetwork) {
|
|
15
|
+
return value === "mainnet" || value === "testnet" ? value : defaultNetwork;
|
|
16
|
+
}
|
|
17
|
+
function withNetworkNote(description, config) {
|
|
18
|
+
return `${description}\n\nNetwork: this server serves both Obyte networks at once. Pass "network":"mainnet" or "network":"testnet" to choose; when omitted it defaults to ${config.defaultNetwork}. If the user has not made the network explicit, confirm which network they mean before calling.`;
|
|
19
|
+
}
|
|
20
|
+
const AMOUNTS_DESCRIPTION_NOTE = 'Amounts: raw ledger amounts in this output are integers in the asset\'s smallest units (base is GBYTE with 9 decimals). Never show raw integers to users: prefer display_total fields when present, otherwise resolve decimals with obyte_resolve_asset or obyte_get_decimals_by_symbol_or_asset and divide by 10^decimals.';
|
|
21
|
+
function toolDescription(tool, config) {
|
|
22
|
+
const base = withNetworkNote(tool.description, config);
|
|
23
|
+
return tool.amounts ? `${base}\n\n${AMOUNTS_DESCRIPTION_NOTE}` : base;
|
|
24
|
+
}
|
|
12
25
|
function registerTool(context, tool) {
|
|
13
26
|
context.server.registerTool(tool.name, {
|
|
14
27
|
title: tool.title,
|
|
15
|
-
description: tool.
|
|
28
|
+
description: toolDescription(tool, context.config),
|
|
16
29
|
inputSchema: tool.schema,
|
|
17
30
|
annotations: {
|
|
18
31
|
title: tool.title,
|
|
@@ -22,22 +35,26 @@ function registerTool(context, tool) {
|
|
|
22
35
|
...(tool.dryRun ? {} : { idempotentHint: true })
|
|
23
36
|
}
|
|
24
37
|
}, async (args) => {
|
|
25
|
-
const
|
|
38
|
+
const record = (args ?? {});
|
|
39
|
+
const network = resolveNetwork(record.network, context.config.defaultNetwork);
|
|
40
|
+
const client = context.clients[network];
|
|
41
|
+
const networkConfig = context.config.networks[network];
|
|
42
|
+
const text = await executeEnvelope(envelopeConfig(context.config, network), tool.name, () => client.retryCount, async () => {
|
|
26
43
|
assertNoSecrets(args);
|
|
27
|
-
return tool.handler(
|
|
44
|
+
return tool.handler(record, { client, network: networkConfig });
|
|
28
45
|
});
|
|
29
46
|
return textResult(text);
|
|
30
47
|
});
|
|
31
48
|
}
|
|
32
|
-
function recommendedTools(
|
|
33
|
-
const { client, config } = context;
|
|
49
|
+
function recommendedTools(_context) {
|
|
34
50
|
return [
|
|
35
51
|
{
|
|
36
52
|
name: "obyte_analyze_address",
|
|
37
53
|
title: "Analyze Obyte Address",
|
|
38
54
|
schema: schemas.analyzeAddressSchema,
|
|
39
|
-
|
|
40
|
-
|
|
55
|
+
amounts: true,
|
|
56
|
+
description: "Recommended first tool whenever the user pastes an Obyte address (a 32-character base32 string) or asks about an Obyte wallet, balance, or account. Returns balances with a decimals-aware balance_summary (symbols, decimals, display totals), plus optional definition, profile units, attestations, and bounded history. Use this instead of several raw calls. Output is a stable JSON envelope and may be truncated.",
|
|
57
|
+
handler: async (args, { client, network }) => {
|
|
41
58
|
const [balances, profileUnits, definition, attestations, history] = await Promise.all([
|
|
42
59
|
client.getBalances([args.address]),
|
|
43
60
|
client.getProfileUnits([args.address]),
|
|
@@ -45,15 +62,28 @@ function recommendedTools(context) {
|
|
|
45
62
|
args.include_attestations ? client.getAttestations(args.address).catch((error) => ({ error: String(error) })) : undefined,
|
|
46
63
|
args.include_history ? client.getHistory([args.address]).catch((error) => ({ error: String(error) })) : undefined
|
|
47
64
|
]);
|
|
48
|
-
|
|
65
|
+
const balanceSummary = await summarizeBalanceAmounts(client, balances, {
|
|
66
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
67
|
+
network: network.network
|
|
68
|
+
});
|
|
69
|
+
return {
|
|
70
|
+
address: args.address,
|
|
71
|
+
balances,
|
|
72
|
+
balance_summary: balanceSummary,
|
|
73
|
+
profile_units: profileUnits,
|
|
74
|
+
definition,
|
|
75
|
+
attestations,
|
|
76
|
+
history
|
|
77
|
+
};
|
|
49
78
|
}
|
|
50
79
|
},
|
|
51
80
|
{
|
|
52
81
|
name: "obyte_analyze_unit",
|
|
53
82
|
title: "Analyze Obyte Unit",
|
|
54
83
|
schema: schemas.analyzeUnitSchema,
|
|
55
|
-
|
|
56
|
-
|
|
84
|
+
amounts: true,
|
|
85
|
+
description: "Recommended tool whenever the user pastes an Obyte unit hash (a 44-character base64 string, usually ending in \"=\") or asks about an Obyte transaction. Fetches the joint and, when requested, follows the AA response chain for trigger units. Payment output amounts are raw smallest units. Output is hub data wrapped in a stable JSON envelope.",
|
|
86
|
+
handler: async (args, { client }) => ({
|
|
57
87
|
unit: args.unit,
|
|
58
88
|
joint: await client.getJoint(args.unit),
|
|
59
89
|
aa_response_chain: args.include_aa_response_chain ? await client.getAaResponseChain(args.unit).catch(() => null) : undefined
|
|
@@ -63,199 +93,245 @@ function recommendedTools(context) {
|
|
|
63
93
|
name: "obyte_analyze_aa",
|
|
64
94
|
title: "Analyze Autonomous Agent",
|
|
65
95
|
schema: schemas.analyzeAaSchema,
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
balances
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
96
|
+
amounts: true,
|
|
97
|
+
description: "Recommended tool for summarizing an Obyte autonomous agent (AA). Returns AA balances with a decimals-aware balance_summary, selected state vars by prefix, and optional AA responses. Use for AA debugging or state inspection. State var amounts are raw smallest units. State vars are sorted by key and output may be truncated.",
|
|
98
|
+
handler: async (args, { client, network }) => {
|
|
99
|
+
const balances = args.include_balances ? await client.getAaBalances(args.address) : undefined;
|
|
100
|
+
const [balanceSummary, stateVars, aaResponses] = await Promise.all([
|
|
101
|
+
balances !== undefined
|
|
102
|
+
? summarizeBalanceAmounts(client, balances, {
|
|
103
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
104
|
+
network: network.network
|
|
105
|
+
})
|
|
106
|
+
: undefined,
|
|
107
|
+
args.state_var_prefix ? client.getAaStateVars(args.address, args.state_var_prefix) : undefined,
|
|
108
|
+
args.include_responses ? client.getAaResponses(args.address) : undefined
|
|
109
|
+
]);
|
|
110
|
+
return {
|
|
111
|
+
address: args.address,
|
|
112
|
+
balances,
|
|
113
|
+
balance_summary: balanceSummary,
|
|
114
|
+
state_vars: stateVars,
|
|
115
|
+
aa_responses: aaResponses
|
|
116
|
+
};
|
|
117
|
+
}
|
|
73
118
|
},
|
|
74
119
|
{
|
|
75
120
|
name: "obyte_resolve_asset",
|
|
76
121
|
title: "Resolve Obyte Asset",
|
|
77
122
|
schema: schemas.resolveAssetSchema,
|
|
78
|
-
description: "Recommended tool for resolving an asset id or token symbol in the
|
|
79
|
-
handler: async (args
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
123
|
+
description: "Recommended tool for resolving an Obyte asset id (44-character base64 string) or token symbol (like GBYTE or OUSD) in the selected network's registry. Returns asset, symbol, and decimals when available. Always call this (or obyte_get_decimals_by_symbol_or_asset) before presenting amounts of unknown assets to users. Registry mappings are convenience metadata, not proof of legitimacy.",
|
|
124
|
+
handler: async (args, { client, network }) => {
|
|
125
|
+
const result = (await resolveAsset(client, args.value, {
|
|
126
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
127
|
+
tokenRegistryAddress: args.token_registry_address
|
|
128
|
+
}));
|
|
129
|
+
const urlTarget = typeof result.symbol === "string" ? result.symbol : args.value;
|
|
130
|
+
return {
|
|
131
|
+
...result,
|
|
132
|
+
explorer_asset_url: assetExplorerUrl(network.network, urlTarget),
|
|
133
|
+
holders_hint: "Open explorer_asset_url to see the asset description and current holders. Explorer amounts are already in display units - do not divide them by 10^decimals again."
|
|
134
|
+
};
|
|
135
|
+
}
|
|
83
136
|
},
|
|
84
137
|
{
|
|
85
138
|
name: "obyte_prepare_aa_dry_run",
|
|
86
139
|
title: "Prepare AA Dry Run",
|
|
87
140
|
schema: schemas.prepareAaDryRunSchema,
|
|
88
141
|
dryRun: true,
|
|
89
|
-
|
|
90
|
-
|
|
142
|
+
amounts: true,
|
|
143
|
+
description: "Recommended tool for simulating an Obyte autonomous-agent trigger through the selected network's hub. Trigger and response amounts are raw smallest units (1 GBYTE = 1e9 bytes) - convert user-facing amounts before building the trigger. This does not sign, broadcast, or mutate local state. Dry-run tools are not marked idempotent and are not retried by default.",
|
|
144
|
+
handler: async (args, { client }) => ({ address: args.address, dry_run: await client.dryRunAa(args.address, args.trigger) })
|
|
91
145
|
},
|
|
92
146
|
{
|
|
93
147
|
name: "obyte_get_portfolio_summary",
|
|
94
148
|
title: "Get Portfolio Summary",
|
|
95
149
|
schema: schemas.portfolioSummarySchema,
|
|
96
|
-
|
|
97
|
-
|
|
150
|
+
amounts: true,
|
|
151
|
+
description: "Recommended tool for summarizing balances for up to 20 addresses. Returns raw balances plus totals_by_asset with symbols, decimals, and display totals already divided by 10^decimals (resolve_symbols controls registry lookups). Use for user-facing balance explanations rather than raw get_balances.",
|
|
152
|
+
handler: async (args, { client, network }) => {
|
|
98
153
|
const balances = await client.getBalances(args.addresses);
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
};
|
|
154
|
+
const summary = await summarizeBalanceAmounts(client, balances, {
|
|
155
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
156
|
+
tokenRegistryAddress: args.token_registry_address,
|
|
157
|
+
resolve: args.resolve_symbols,
|
|
158
|
+
maxResolvedAssets: 20,
|
|
159
|
+
network: network.network
|
|
160
|
+
});
|
|
161
|
+
return { addresses: args.addresses, balances, ...summary };
|
|
106
162
|
}
|
|
107
163
|
}
|
|
108
164
|
];
|
|
109
165
|
}
|
|
110
166
|
function rawTools(context) {
|
|
111
|
-
const { client, config } = context;
|
|
112
167
|
return [
|
|
113
168
|
{
|
|
114
169
|
name: "obyte_get_network_info",
|
|
115
170
|
title: "Get Obyte Network Info",
|
|
116
171
|
schema: schemas.networkInfoSchema,
|
|
117
|
-
description: "Returns the effective MCP runtime configuration: network, hub URL
|
|
118
|
-
handler: async () => ({
|
|
172
|
+
description: "Returns the effective MCP runtime configuration for both networks: default network, per-network hub URL and token registry, config precedence, limits, and witnesses cache metadata. Use before other calls when network selection matters.",
|
|
173
|
+
handler: async () => ({
|
|
174
|
+
default_network: context.config.defaultNetwork,
|
|
175
|
+
default_network_source: context.config.defaultNetworkSource,
|
|
176
|
+
networks: context.config.networks,
|
|
177
|
+
limits: {
|
|
178
|
+
timeout_ms: context.config.timeoutMs,
|
|
179
|
+
max_concurrency: context.config.maxConcurrency,
|
|
180
|
+
max_output_bytes: context.config.maxOutputBytes,
|
|
181
|
+
source: context.config.limitsSource
|
|
182
|
+
},
|
|
183
|
+
witnesses_cache: {
|
|
184
|
+
mainnet: context.clients.mainnet.getWitnessesCacheInfo(),
|
|
185
|
+
testnet: context.clients.testnet.getWitnessesCacheInfo()
|
|
186
|
+
}
|
|
187
|
+
})
|
|
119
188
|
},
|
|
120
189
|
{
|
|
121
190
|
name: "obyte_get_last_mci",
|
|
122
191
|
title: "Get Last MCI",
|
|
123
|
-
schema: schemas.
|
|
124
|
-
description: "Raw hub read. Returns the last main chain index known by the
|
|
125
|
-
handler: async () => client.getLastMci()
|
|
192
|
+
schema: schemas.networkOnlySchema,
|
|
193
|
+
description: "Raw hub read. Returns the last main chain index known by the selected Obyte hub.",
|
|
194
|
+
handler: async (_args, { client }) => client.getLastMci()
|
|
126
195
|
},
|
|
127
196
|
{
|
|
128
197
|
name: "obyte_get_peers",
|
|
129
198
|
title: "Get Hub Peers",
|
|
130
|
-
schema: schemas.
|
|
131
|
-
description: "Raw hub read. Returns peers known by the
|
|
132
|
-
handler: async () => client.getPeers()
|
|
199
|
+
schema: schemas.networkOnlySchema,
|
|
200
|
+
description: "Raw hub read. Returns peers known by the selected Obyte hub. Use for network diagnostics, not address analysis.",
|
|
201
|
+
handler: async (_args, { client }) => client.getPeers()
|
|
133
202
|
},
|
|
134
203
|
{
|
|
135
204
|
name: "obyte_get_witnesses",
|
|
136
205
|
title: "Get Witnesses",
|
|
137
206
|
schema: schemas.getWitnessesSchema,
|
|
138
|
-
description: "Raw hub read. Returns witnesses for the
|
|
139
|
-
handler: async (args) => client.getWitnesses(args.update)
|
|
207
|
+
description: "Raw hub read. Returns witnesses for the selected network. Results are cached in memory for 10 minutes per network+hub unless update is true.",
|
|
208
|
+
handler: async (args, { client }) => client.getWitnesses(args.update)
|
|
140
209
|
},
|
|
141
210
|
{
|
|
142
211
|
name: "obyte_get_joint",
|
|
143
212
|
title: "Get Joint",
|
|
144
213
|
schema: schemas.getJointSchema,
|
|
145
|
-
description: "Raw hub read. Fetches the joint for one unit hash from the
|
|
146
|
-
handler: async (args) => client.getJoint(args.unit)
|
|
214
|
+
description: "Raw hub read. Fetches the joint for one unit hash from the selected hub.",
|
|
215
|
+
handler: async (args, { client }) => client.getJoint(args.unit)
|
|
147
216
|
},
|
|
148
217
|
{
|
|
149
218
|
name: "obyte_get_balances",
|
|
150
219
|
title: "Get Balances",
|
|
151
220
|
schema: schemas.addressesSchema,
|
|
152
|
-
|
|
153
|
-
|
|
221
|
+
amounts: true,
|
|
222
|
+
description: "Raw hub read. Fetches balances for 1 to 20 addresses. Use obyte_get_portfolio_summary for agent-friendly summaries with decimals-adjusted display totals.",
|
|
223
|
+
handler: async (args, { client }) => client.getBalances(args.addresses)
|
|
154
224
|
},
|
|
155
225
|
{
|
|
156
226
|
name: "obyte_get_profile_units",
|
|
157
227
|
title: "Get Profile Units",
|
|
158
228
|
schema: schemas.addressesSchema,
|
|
159
229
|
description: "Raw hub read. Returns profile units for 1 to 20 addresses when available.",
|
|
160
|
-
handler: async (args) => client.getProfileUnits(args.addresses)
|
|
230
|
+
handler: async (args, { client }) => client.getProfileUnits(args.addresses)
|
|
161
231
|
},
|
|
162
232
|
{
|
|
163
233
|
name: "obyte_get_definition",
|
|
164
234
|
title: "Get Address Definition",
|
|
165
235
|
schema: schemas.getDefinitionSchema,
|
|
166
236
|
description: "Raw hub read. Returns the definition of one Obyte address.",
|
|
167
|
-
handler: async (args) => client.getDefinition(args.address)
|
|
237
|
+
handler: async (args, { client }) => client.getDefinition(args.address)
|
|
168
238
|
},
|
|
169
239
|
{
|
|
170
240
|
name: "obyte_get_data_feed",
|
|
171
241
|
title: "Get Data Feed",
|
|
172
242
|
schema: schemas.getDataFeedSchema,
|
|
173
243
|
description: "Raw hub read. Reads a data feed by oracle addresses and feed name. Oracle arrays are limited to 10 entries.",
|
|
174
|
-
handler: async (args) => client.getDataFeed(args.oracles, args.feed_name, args.ifnone)
|
|
244
|
+
handler: async (args, { client }) => client.getDataFeed(args.oracles, args.feed_name, args.ifnone)
|
|
175
245
|
},
|
|
176
246
|
{
|
|
177
247
|
name: "obyte_get_history",
|
|
178
248
|
title: "Get Address History",
|
|
179
249
|
schema: schemas.getHistorySchema,
|
|
250
|
+
amounts: true,
|
|
180
251
|
description: "Raw hub read. Returns history for 1 to 20 addresses. If witnesses are omitted, the server uses the 10-minute witnesses cache or fetches witnesses from the hub.",
|
|
181
|
-
handler: async (args) => client.getHistory(args.addresses, args.witnesses, args.update_witnesses)
|
|
252
|
+
handler: async (args, { client }) => client.getHistory(args.addresses, args.witnesses, args.update_witnesses)
|
|
182
253
|
},
|
|
183
254
|
{
|
|
184
255
|
name: "obyte_get_attestation",
|
|
185
256
|
title: "Get Attestation",
|
|
186
257
|
schema: schemas.getAttestationSchema,
|
|
187
258
|
description: "Raw hub read. Looks up one attestation by attestor address, field, and value.",
|
|
188
|
-
handler: async (args) => client.getAttestation(args.attestor_address, args.field, args.value)
|
|
259
|
+
handler: async (args, { client }) => client.getAttestation(args.attestor_address, args.field, args.value)
|
|
189
260
|
},
|
|
190
261
|
{
|
|
191
262
|
name: "obyte_get_attestations",
|
|
192
263
|
title: "Get Address Attestations",
|
|
193
264
|
schema: schemas.getAttestationsSchema,
|
|
194
265
|
description: "Raw hub read. Returns attestations associated with one address.",
|
|
195
|
-
handler: async (args) => client.getAttestations(args.address)
|
|
266
|
+
handler: async (args, { client }) => client.getAttestations(args.address)
|
|
196
267
|
},
|
|
197
268
|
{
|
|
198
269
|
name: "obyte_get_aa_response_chain",
|
|
199
270
|
title: "Get AA Response Chain",
|
|
200
271
|
schema: schemas.triggerUnitSchema,
|
|
272
|
+
amounts: true,
|
|
201
273
|
description: "Raw hub read. Returns the autonomous-agent response chain for a trigger unit.",
|
|
202
|
-
handler: async (args) => client.getAaResponseChain(args.trigger_unit)
|
|
274
|
+
handler: async (args, { client }) => client.getAaResponseChain(args.trigger_unit)
|
|
203
275
|
},
|
|
204
276
|
{
|
|
205
277
|
name: "obyte_get_aa_responses",
|
|
206
278
|
title: "Get AA Responses",
|
|
207
279
|
schema: schemas.aaOrAasSchema,
|
|
280
|
+
amounts: true,
|
|
208
281
|
description: "Raw hub read. Returns AA responses for one AA address or up to 20 AA addresses.",
|
|
209
|
-
handler: async (args) => client.getAaResponses(args.aa ?? args.aas)
|
|
282
|
+
handler: async (args, { client }) => client.getAaResponses(args.aa ?? args.aas)
|
|
210
283
|
},
|
|
211
284
|
{
|
|
212
285
|
name: "obyte_get_aas_by_base_aas",
|
|
213
286
|
title: "Get AAs By Base AAs",
|
|
214
287
|
schema: schemas.baseAaOrAasSchema,
|
|
215
288
|
description: "Raw hub read. Returns AAs derived from one base AA or up to 20 base AAs.",
|
|
216
|
-
handler: async (args) => client.getAasByBaseAas(args.base_aa ?? args.base_aas)
|
|
289
|
+
handler: async (args, { client }) => client.getAasByBaseAas(args.base_aa ?? args.base_aas)
|
|
217
290
|
},
|
|
218
291
|
{
|
|
219
292
|
name: "obyte_dry_run_aa",
|
|
220
293
|
title: "Dry Run AA",
|
|
221
294
|
schema: schemas.dryRunAaSchema,
|
|
222
295
|
dryRun: true,
|
|
296
|
+
amounts: true,
|
|
223
297
|
description: "Raw hub dry run. Simulates triggering an autonomous agent with a JSON trigger payload. It does not sign or broadcast. Not retried by default and not marked idempotent.",
|
|
224
|
-
handler: async (args) => client.dryRunAa(args.address, args.trigger)
|
|
298
|
+
handler: async (args, { client }) => client.dryRunAa(args.address, args.trigger)
|
|
225
299
|
},
|
|
226
300
|
{
|
|
227
301
|
name: "obyte_execute_getter",
|
|
228
302
|
title: "Execute AA Getter",
|
|
229
303
|
schema: schemas.executeGetterSchema,
|
|
230
304
|
description: "Raw hub read. Executes an autonomous-agent getter with optional JSON args and returns the getter result.",
|
|
231
|
-
handler: async (args) => client.executeGetter(args.address, args.getter, args.args)
|
|
305
|
+
handler: async (args, { client }) => client.executeGetter(args.address, args.getter, args.args)
|
|
232
306
|
},
|
|
233
307
|
{
|
|
234
308
|
name: "obyte_get_aa_balances",
|
|
235
309
|
title: "Get AA Balances",
|
|
236
310
|
schema: schemas.aaAddressSchema,
|
|
237
|
-
|
|
238
|
-
|
|
311
|
+
amounts: true,
|
|
312
|
+
description: "Raw hub read. Returns balances held by one autonomous agent address. Use obyte_analyze_aa for a decimals-aware summary.",
|
|
313
|
+
handler: async (args, { client }) => client.getAaBalances(args.address)
|
|
239
314
|
},
|
|
240
315
|
{
|
|
241
316
|
name: "obyte_get_aa_state_vars",
|
|
242
317
|
title: "Get AA State Vars",
|
|
243
318
|
schema: schemas.getAaStateVarsSchema,
|
|
244
|
-
|
|
245
|
-
|
|
319
|
+
amounts: true,
|
|
320
|
+
description: "Raw hub read. Returns autonomous-agent state variables, optionally bounded by prefix/range. State vars holding amounts are raw smallest units. Prefix length is limited to 128 characters. Map-like output is sorted by key.",
|
|
321
|
+
handler: async (args, { client }) => client.getAaStateVars(args.address, args.var_prefix, args.var_prefix_from, args.var_prefix_to)
|
|
246
322
|
}
|
|
247
323
|
];
|
|
248
324
|
}
|
|
249
|
-
function symbolTools(
|
|
250
|
-
const { client, config } = context;
|
|
325
|
+
function symbolTools(_context) {
|
|
251
326
|
return [
|
|
252
327
|
{
|
|
253
328
|
name: "obyte_get_official_token_registry_address",
|
|
254
329
|
title: "Get Token Registry Address",
|
|
255
330
|
schema: schemas.registrySchema,
|
|
256
|
-
description: "Returns the
|
|
257
|
-
handler: async (args) => ({
|
|
258
|
-
|
|
331
|
+
description: "Returns the token registry address for the selected network. The mainnet default comes from obyte.js; custom and testnet registries must be explicitly trusted by the user.",
|
|
332
|
+
handler: async (args, { network }) => ({
|
|
333
|
+
network: network.network,
|
|
334
|
+
token_registry_address: args.token_registry_address ?? network.tokenRegistryAddress ?? null,
|
|
259
335
|
trust_model: "Registry mappings are metadata convenience, not proof of asset legitimacy."
|
|
260
336
|
})
|
|
261
337
|
},
|
|
@@ -264,8 +340,8 @@ function symbolTools(context) {
|
|
|
264
340
|
title: "Get Symbol By Asset",
|
|
265
341
|
schema: schemas.symbolByAssetSchema,
|
|
266
342
|
description: "Resolves an Obyte asset id to a token symbol through the selected registry. base/null maps to GBYTE; unknown assets fall back to the first sanitized asset characters as in obyte.js.",
|
|
267
|
-
handler: async (args) => getSymbolByAsset(client, args.asset, {
|
|
268
|
-
configuredRegistryAddress:
|
|
343
|
+
handler: async (args, { client, network }) => getSymbolByAsset(client, args.asset, {
|
|
344
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
269
345
|
tokenRegistryAddress: args.token_registry_address
|
|
270
346
|
})
|
|
271
347
|
},
|
|
@@ -274,8 +350,8 @@ function symbolTools(context) {
|
|
|
274
350
|
title: "Get Asset By Symbol",
|
|
275
351
|
schema: schemas.assetBySymbolSchema,
|
|
276
352
|
description: "Resolves a token symbol to an Obyte asset id through the selected registry. GBYTE, MBYTE, KBYTE, and BYTE resolve to base.",
|
|
277
|
-
handler: async (args) => getAssetBySymbol(client, args.symbol, {
|
|
278
|
-
configuredRegistryAddress:
|
|
353
|
+
handler: async (args, { client, network }) => getAssetBySymbol(client, args.symbol, {
|
|
354
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
279
355
|
tokenRegistryAddress: args.token_registry_address
|
|
280
356
|
})
|
|
281
357
|
},
|
|
@@ -284,8 +360,8 @@ function symbolTools(context) {
|
|
|
284
360
|
title: "Get Decimals By Symbol Or Asset",
|
|
285
361
|
schema: schemas.decimalsSchema,
|
|
286
362
|
description: "Returns decimals for base aliases or a registry-known token symbol/asset. base and GBYTE use 9, MBYTE 6, KBYTE 3, BYTE 0. Registry data is untrusted metadata.",
|
|
287
|
-
handler: async (args) => getDecimalsBySymbolOrAsset(client, args.symbol_or_asset, {
|
|
288
|
-
configuredRegistryAddress:
|
|
363
|
+
handler: async (args, { client, network }) => getDecimalsBySymbolOrAsset(client, args.symbol_or_asset, {
|
|
364
|
+
configuredRegistryAddress: network.tokenRegistryAddress,
|
|
289
365
|
tokenRegistryAddress: args.token_registry_address
|
|
290
366
|
})
|
|
291
367
|
}
|
package/dist/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -1,30 +1,45 @@
|
|
|
1
1
|
export type Network = "mainnet" | "testnet";
|
|
2
|
+
export type ConfigSource = "env" | "cli" | "default";
|
|
2
3
|
export type JsonPrimitive = string | number | boolean | null;
|
|
3
4
|
export type JsonValue = JsonPrimitive | JsonObject | JsonValue[];
|
|
4
5
|
export interface JsonObject {
|
|
5
6
|
[key: string]: JsonValue;
|
|
6
7
|
}
|
|
7
8
|
export type ErrorCode = "VALIDATION_ERROR" | "CONFIG_ERROR" | "HUB_ERROR" | "TIMEOUT" | "NETWORK_ERROR" | "OUTPUT_TOO_LARGE" | "SECRET_INPUT_REJECTED" | "INTERNAL_ERROR";
|
|
8
|
-
export interface
|
|
9
|
+
export interface NetworkConfig {
|
|
9
10
|
network: Network;
|
|
10
11
|
hubAddress: string;
|
|
11
12
|
tokenRegistryAddress: string | undefined;
|
|
13
|
+
hubSource: ConfigSource;
|
|
14
|
+
tokenRegistrySource: ConfigSource | "unset";
|
|
15
|
+
}
|
|
16
|
+
export interface RuntimeConfig {
|
|
17
|
+
defaultNetwork: Network;
|
|
18
|
+
defaultNetworkSource: ConfigSource;
|
|
19
|
+
networks: Record<Network, NetworkConfig>;
|
|
12
20
|
timeoutMs: number;
|
|
13
21
|
maxConcurrency: number;
|
|
14
22
|
maxOutputBytes: number;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
timeoutMs: "env" | "cli" | "default";
|
|
20
|
-
maxConcurrency: "env" | "cli" | "default";
|
|
21
|
-
maxOutputBytes: "env" | "cli" | "default";
|
|
23
|
+
limitsSource: {
|
|
24
|
+
timeoutMs: ConfigSource;
|
|
25
|
+
maxConcurrency: ConfigSource;
|
|
26
|
+
maxOutputBytes: ConfigSource;
|
|
22
27
|
};
|
|
23
28
|
}
|
|
29
|
+
/** Minimal per-call view used when building the response envelope. */
|
|
30
|
+
export interface EnvelopeConfig {
|
|
31
|
+
network: Network;
|
|
32
|
+
hubAddress: string;
|
|
33
|
+
maxOutputBytes: number;
|
|
34
|
+
}
|
|
24
35
|
export interface CliOptions {
|
|
25
36
|
network?: Network | undefined;
|
|
26
37
|
hubAddress?: string | undefined;
|
|
27
38
|
tokenRegistryAddress?: string | undefined;
|
|
39
|
+
mainnetHubAddress?: string | undefined;
|
|
40
|
+
testnetHubAddress?: string | undefined;
|
|
41
|
+
mainnetTokenRegistryAddress?: string | undefined;
|
|
42
|
+
testnetTokenRegistryAddress?: string | undefined;
|
|
28
43
|
timeoutMs?: number | undefined;
|
|
29
44
|
maxConcurrency?: number | undefined;
|
|
30
45
|
maxOutputBytes?: number | undefined;
|
|
@@ -57,7 +72,7 @@ export interface ErrorEnvelope {
|
|
|
57
72
|
}
|
|
58
73
|
export type ToolEnvelope = SuccessEnvelope | ErrorEnvelope;
|
|
59
74
|
export interface ToolExecutionContext {
|
|
60
|
-
config:
|
|
75
|
+
config: EnvelopeConfig;
|
|
61
76
|
requestId: string;
|
|
62
77
|
toolName: string;
|
|
63
78
|
startedAt: number;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obyte-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"mcpName": "io.github.taump/obyte-mcp",
|
|
5
|
-
"description": "Local stdio MCP server for querying Obyte hubs.",
|
|
5
|
+
"description": "Local stdio MCP server for querying Obyte mainnet and testnet hubs.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"obyte-mcp": "dist/index.js"
|
|
@@ -21,6 +21,9 @@
|
|
|
21
21
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
22
22
|
"test": "vitest run",
|
|
23
23
|
"test:watch": "vitest",
|
|
24
|
+
"setup": "node dist/index.js setup",
|
|
25
|
+
"register": "node dist/index.js install",
|
|
26
|
+
"bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . obyte-mcp.mcpb",
|
|
24
27
|
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
25
28
|
},
|
|
26
29
|
"keywords": [
|