@goplausible/algorand-mcp 3.9.6 → 3.9.8
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.
|
@@ -22,15 +22,10 @@ export declare class Arc26Manager {
|
|
|
22
22
|
qrCode: string;
|
|
23
23
|
}>;
|
|
24
24
|
handleTool(name: string, args: Record<string, unknown>): Promise<{
|
|
25
|
-
content:
|
|
25
|
+
content: {
|
|
26
26
|
type: string;
|
|
27
27
|
text: string;
|
|
28
|
-
|
|
29
|
-
} | {
|
|
30
|
-
type: string;
|
|
31
|
-
text: string;
|
|
32
|
-
mimeType: string;
|
|
33
|
-
})[];
|
|
28
|
+
}[];
|
|
34
29
|
}>;
|
|
35
30
|
}
|
|
36
31
|
export declare const arc26Manager: Arc26Manager;
|
|
@@ -87,9 +87,9 @@ export class Arc26Manager {
|
|
|
87
87
|
if (queryParams.length > 0) {
|
|
88
88
|
uri += '?' + queryParams.join('&');
|
|
89
89
|
}
|
|
90
|
-
// Generate QR code as
|
|
90
|
+
// Generate QR code as terminal output
|
|
91
91
|
const qrCode = await QRCode.toString(uri, {
|
|
92
|
-
type: '
|
|
92
|
+
type: 'terminal',
|
|
93
93
|
errorCorrectionLevel: 'H',
|
|
94
94
|
margin: 1,
|
|
95
95
|
width: 300
|
|
@@ -115,12 +115,7 @@ export class Arc26Manager {
|
|
|
115
115
|
content: [
|
|
116
116
|
{
|
|
117
117
|
type: "text",
|
|
118
|
-
text:
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
type: "text",
|
|
122
|
-
text: qrCode,
|
|
123
|
-
mimeType: "image/svg+xml"
|
|
118
|
+
text: `${qrCode}\n\n${uri}`
|
|
124
119
|
}
|
|
125
120
|
]
|
|
126
121
|
};
|
|
@@ -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.9.
|
|
89
|
+
version: '3.9.8',
|
|
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).',
|