helius-mcp 0.5.2 → 0.5.3
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 +2 -2
- package/dist/tools/docs.js +1 -13
- package/dist/tools/index.js +0 -2
- package/dist/utils/docs.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Set your API key:
|
|
|
13
13
|
export HELIUS_API_KEY=your-api-key
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
## Tools (
|
|
16
|
+
## Tools (46)
|
|
17
17
|
|
|
18
18
|
**Config (2):** setHeliusApiKey, getHeliusApiKeyStatus
|
|
19
19
|
|
|
@@ -33,7 +33,7 @@ export HELIUS_API_KEY=your-api-key
|
|
|
33
33
|
|
|
34
34
|
**Wallet API (6):** getWalletIdentity, batchWalletIdentity, getWalletBalances, getWalletHistory, getWalletTransfers, getWalletFundedBy
|
|
35
35
|
|
|
36
|
-
**
|
|
36
|
+
**Guides (6):** getRateLimitInfo, getSenderInfo, getWebhookGuide, troubleshootError, getLatencyComparison, getPumpFunGuide
|
|
37
37
|
|
|
38
38
|
**Documentation (3):** lookupHeliusDocs, listHeliusDocTopics, getHeliusCreditsInfo
|
|
39
39
|
|
package/dist/tools/docs.js
CHANGED
|
@@ -8,6 +8,7 @@ export function registerDocsTools(server) {
|
|
|
8
8
|
topic: z
|
|
9
9
|
.enum([
|
|
10
10
|
'overview',
|
|
11
|
+
'billing',
|
|
11
12
|
'das',
|
|
12
13
|
'rpc',
|
|
13
14
|
'websocket',
|
|
@@ -188,19 +189,6 @@ export function registerDocsTools(server) {
|
|
|
188
189
|
'Source: https://www.helius.dev/docs (fetched live)',
|
|
189
190
|
'',
|
|
190
191
|
...tableLines,
|
|
191
|
-
'',
|
|
192
|
-
'## Key Points',
|
|
193
|
-
'- Credits are consumed per API call',
|
|
194
|
-
'- Monthly allocation resets each billing cycle',
|
|
195
|
-
'- Additional credits: $5 per million (paid plans)',
|
|
196
|
-
'',
|
|
197
|
-
'## Credit Tiers',
|
|
198
|
-
'| Plan | Monthly Credits |',
|
|
199
|
-
'|------|-----------------|',
|
|
200
|
-
'| Free | 1M |',
|
|
201
|
-
'| Developer ($49/mo) | 10M |',
|
|
202
|
-
'| Business ($499/mo) | 100M |',
|
|
203
|
-
'| Professional ($999/mo) | 200M |',
|
|
204
192
|
].join('\n');
|
|
205
193
|
return { content: [{ type: 'text', text: result }] };
|
|
206
194
|
}
|
package/dist/tools/index.js
CHANGED
|
@@ -12,7 +12,6 @@ import { registerWebhookTools } from './webhooks.js';
|
|
|
12
12
|
import { registerEnhancedWebSocketTools } from './enhanced-websockets.js';
|
|
13
13
|
import { registerLaserstreamTools } from './laserstream.js';
|
|
14
14
|
import { registerWalletTools } from './wallet.js';
|
|
15
|
-
import { registerPlanTools } from './plans.js';
|
|
16
15
|
import { registerGuideTools } from './guides.js';
|
|
17
16
|
import { registerDocsTools } from './docs.js';
|
|
18
17
|
export function registerTools(server) {
|
|
@@ -30,7 +29,6 @@ export function registerTools(server) {
|
|
|
30
29
|
registerEnhancedWebSocketTools(server);
|
|
31
30
|
registerLaserstreamTools(server);
|
|
32
31
|
registerWalletTools(server);
|
|
33
|
-
registerPlanTools(server);
|
|
34
32
|
registerGuideTools(server);
|
|
35
33
|
registerDocsTools(server);
|
|
36
34
|
}
|
package/dist/utils/docs.js
CHANGED
|
@@ -12,6 +12,10 @@ export const DOCS_INDEX = {
|
|
|
12
12
|
path: '/llms.txt',
|
|
13
13
|
description: 'Main Helius overview: plans, credits, rate limits, use cases, API index',
|
|
14
14
|
},
|
|
15
|
+
billing: {
|
|
16
|
+
path: '/billing/llms.txt',
|
|
17
|
+
description: 'Billing & Plans: pricing tiers, credits, rate limits, autoscaling, payment methods',
|
|
18
|
+
},
|
|
15
19
|
das: {
|
|
16
20
|
path: '/api-reference/das/llms.txt',
|
|
17
21
|
description: 'DAS API: getAsset, getAssetsByOwner, searchAssets, compressed NFTs',
|