@goplausible/algorand-mcp 4.0.9 → 4.1.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.
@@ -38,7 +38,7 @@ export declare const apiManager: ({
38
38
  src: string;
39
39
  mimeType?: string | undefined;
40
40
  sizes?: string[] | undefined;
41
- theme?: "light" | "dark" | undefined;
41
+ theme?: "dark" | "light" | undefined;
42
42
  }[] | undefined;
43
43
  title?: string | undefined;
44
44
  })[];
@@ -101,7 +101,11 @@ export class Arc26Manager {
101
101
  const qrCodePng = await QRCode.toDataURL(uri, {
102
102
  type: 'image/png',
103
103
  errorCorrectionLevel: 'H',
104
- // margin: 1,
104
+ color: {
105
+ dark: '#000000',
106
+ light: '#FFFFFF'
107
+ },
108
+ margin: 4,
105
109
  width: 128
106
110
  });
107
111
  return {
@@ -124,7 +128,7 @@ export class Arc26Manager {
124
128
  const { uri, qrCodePng, qrCodeUtf8 } = await this.generateUriAndQr(toolArgs);
125
129
  return {
126
130
  content: [
127
- { type: "text", text: qrCodeUtf8 + "\n\n```json\n" + JSON.stringify({ uri }, null, 2) + "\n```" },
131
+ { type: "text", text: qrCodeUtf8 + "\n\n```\n" + uri + "\n```" },
128
132
  { type: "image", data: qrCodePng.replace(/^data:image\/png;base64,/, ''), mimeType: "image/png" }
129
133
  ]
130
134
  };
@@ -86,7 +86,7 @@ export class UtilityManager {
86
86
  type: 'text',
87
87
  text: JSON.stringify({
88
88
  name: 'Algorand MCP Server',
89
- version: '4.0.9',
89
+ version: '4.1.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).',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goplausible/algorand-mcp",
3
- "version": "4.0.9",
3
+ "version": "4.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },