@goplausible/algorand-mcp 3.2.1 → 3.3.1
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.
|
@@ -26,40 +26,6 @@ export declare const generalTransactionSchemas: {
|
|
|
26
26
|
};
|
|
27
27
|
required: string[];
|
|
28
28
|
};
|
|
29
|
-
signBytes: {
|
|
30
|
-
type: string;
|
|
31
|
-
properties: {
|
|
32
|
-
bytes: {
|
|
33
|
-
type: string;
|
|
34
|
-
description: string;
|
|
35
|
-
};
|
|
36
|
-
sk: {
|
|
37
|
-
type: string;
|
|
38
|
-
description: string;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
required: string[];
|
|
42
|
-
};
|
|
43
|
-
encodeObj: {
|
|
44
|
-
type: string;
|
|
45
|
-
properties: {
|
|
46
|
-
obj: {
|
|
47
|
-
type: string;
|
|
48
|
-
description: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
required: string[];
|
|
52
|
-
};
|
|
53
|
-
decodeObj: {
|
|
54
|
-
type: string;
|
|
55
|
-
properties: {
|
|
56
|
-
bytes: {
|
|
57
|
-
type: string;
|
|
58
|
-
description: string;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
required: string[];
|
|
62
|
-
};
|
|
63
29
|
encodeUnsignedTransaction: {
|
|
64
30
|
type: string;
|
|
65
31
|
properties: {
|
|
@@ -22,28 +22,6 @@ export const generalTransactionSchemas = {
|
|
|
22
22
|
},
|
|
23
23
|
required: ['transaction', 'sk']
|
|
24
24
|
},
|
|
25
|
-
signBytes: {
|
|
26
|
-
type: 'object',
|
|
27
|
-
properties: {
|
|
28
|
-
bytes: { type: 'string', description: 'Base64-encoded bytes to be signed' },
|
|
29
|
-
sk: { type: 'string', description: 'Secret key in hexadecimal format to sign the bytes with' }
|
|
30
|
-
},
|
|
31
|
-
required: ['bytes', 'sk']
|
|
32
|
-
},
|
|
33
|
-
encodeObj: {
|
|
34
|
-
type: 'object',
|
|
35
|
-
properties: {
|
|
36
|
-
obj: { type: 'object', description: 'Object to be encoded into msgpack format' }
|
|
37
|
-
},
|
|
38
|
-
required: ['obj']
|
|
39
|
-
},
|
|
40
|
-
decodeObj: {
|
|
41
|
-
type: 'object',
|
|
42
|
-
properties: {
|
|
43
|
-
bytes: { type: 'string', description: 'Base64-encoded msgpack bytes to be decoded into an object' }
|
|
44
|
-
},
|
|
45
|
-
required: ['bytes']
|
|
46
|
-
},
|
|
47
25
|
encodeUnsignedTransaction: {
|
|
48
26
|
type: 'object',
|
|
49
27
|
properties: {
|
|
@@ -71,21 +49,6 @@ export const generalTransactionTools = [
|
|
|
71
49
|
description: 'Sign a transaction with a secret key',
|
|
72
50
|
inputSchema: withCommonParams(generalTransactionSchemas.signTransaction),
|
|
73
51
|
},
|
|
74
|
-
{
|
|
75
|
-
name: 'sign_bytes',
|
|
76
|
-
description: 'Sign arbitrary bytes with a secret key',
|
|
77
|
-
inputSchema: withCommonParams(generalTransactionSchemas.signBytes),
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
name: 'encode_obj',
|
|
81
|
-
description: 'Encode an object to msgpack format',
|
|
82
|
-
inputSchema: withCommonParams(generalTransactionSchemas.encodeObj),
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
name: 'decode_obj',
|
|
86
|
-
description: 'Decode msgpack bytes to an object',
|
|
87
|
-
inputSchema: withCommonParams(generalTransactionSchemas.decodeObj),
|
|
88
|
-
},
|
|
89
52
|
{
|
|
90
53
|
name: 'encode_unsigned_transaction',
|
|
91
54
|
description: 'Encode a transaction object into base64 unsigned transaction bytes (msgpack). Accepts output from make_*_txn or assign_group_id.',
|
|
@@ -28,9 +28,6 @@ export class TransactionManager {
|
|
|
28
28
|
// General transactions
|
|
29
29
|
if (name === 'assign_group_id' ||
|
|
30
30
|
name === 'sign_transaction' ||
|
|
31
|
-
name === 'sign_bytes' ||
|
|
32
|
-
name === 'encode_obj' ||
|
|
33
|
-
name === 'decode_obj' ||
|
|
34
31
|
name === 'encode_unsigned_transaction' ||
|
|
35
32
|
name === 'decode_signed_transaction') {
|
|
36
33
|
return GeneralTransactionManager.handleTool(name, args);
|
|
@@ -86,7 +86,7 @@ export class UtilityManager {
|
|
|
86
86
|
type: 'text',
|
|
87
87
|
text: JSON.stringify({
|
|
88
88
|
name: 'Algorand MCP Server',
|
|
89
|
-
version: '3.
|
|
89
|
+
version: '3.3.1',
|
|
90
90
|
builder: 'GoPlausible',
|
|
91
91
|
description: 'A Model Context Protocol (MCP) server providing comprehensive access to the Algorand blockchain. Supports account management, transaction building and signing, smart contract interaction, asset operations, ARC-26 URI generation, and deep integration with Algorand ecosystem services including NFDomains, Tinyman, Vestige, and Ultrade.',
|
|
92
92
|
blockchain: 'Algorand — a carbon-negative, pure proof-of-stake Layer 1 blockchain delivering instant finality, low fees, and advanced smart contract capabilities via AVM (Algorand Virtual Machine).',
|