@goplausible/algorand-mcp 4.2.6 → 4.2.7
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.
|
@@ -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.2.
|
|
89
|
+
version: '4.2.7',
|
|
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).',
|
|
@@ -6,7 +6,10 @@
|
|
|
6
6
|
BigInt.prototype.toJSON = function () {
|
|
7
7
|
return Number(this);
|
|
8
8
|
};
|
|
9
|
-
const DEFAULT_ITEMS_PER_PAGE =
|
|
9
|
+
const DEFAULT_ITEMS_PER_PAGE = (() => {
|
|
10
|
+
const fromEnv = parseInt(process.env.ITEMS_PER_PAGE ?? '', 10);
|
|
11
|
+
return Number.isFinite(fromEnv) && fromEnv > 0 ? fromEnv : 10;
|
|
12
|
+
})();
|
|
10
13
|
export class ResponseProcessor {
|
|
11
14
|
static generateNextPageToken(page) {
|
|
12
15
|
return btoa(`page_${page}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goplausible/algorand-mcp",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"typecheck": "tsc --noEmit",
|
|
16
16
|
"tag": "git tag v$npm_package_version && git push origin v$npm_package_version",
|
|
17
17
|
"retag": "git tag -f v$npm_package_version && git push -f origin v$npm_package_version",
|
|
18
|
-
"publish:npm": "npm publish",
|
|
18
|
+
"publish:npm": "npm publish --access public",
|
|
19
19
|
"prepublishOnly": "npm run clean && npm run build"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|