helius-mcp 0.4.1 → 0.4.5

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.
@@ -35,15 +35,15 @@ export function registerConfigTools(server) {
35
35
  '"env": { "HELIUS_API_KEY": "your-api-key" }',
36
36
  '```',
37
37
  '',
38
- '**Get your free API key at: https://dev.helius.xyz**',
38
+ '**Get your free API key at: https://dashboard.helius.dev/api-keys**',
39
39
  '',
40
40
  'Note: Guide tools (getRateLimitInfo, getSenderInfo, etc.) work without an API key.',
41
41
  ].join('\n')
42
42
  }]
43
43
  };
44
44
  });
45
- server.tool('setHeliusApiKey', 'Set the Helius API key for the current session. Required before using data tools (getBalance, getAsset, etc.). Get your free API key at https://dev.helius.xyz', {
46
- apiKey: z.string().describe('Your Helius API key from https://dev.helius.xyz'),
45
+ server.tool('setHeliusApiKey', 'Set the Helius API key for the current session. Required before using data tools (getBalance, getAsset, etc.). Get your free API key at https://dashboard.helius.dev/api-keys', {
46
+ apiKey: z.string().describe('Your Helius API key from https://dashboard.helius.dev/api-keys'),
47
47
  network: z.enum(['mainnet-beta', 'devnet']).optional().default('mainnet-beta').describe('Network to use (default: mainnet-beta)')
48
48
  }, async ({ apiKey, network }) => {
49
49
  setApiKey(apiKey);
@@ -67,7 +67,7 @@ export function registerConfigTools(server) {
67
67
  '',
68
68
  'Please check your key and try again.',
69
69
  '',
70
- 'Get your free API key at: https://dev.helius.xyz',
70
+ 'Get your free API key at: https://dashboard.helius.dev/api-keys',
71
71
  ].join('\n')
72
72
  }],
73
73
  isError: true
@@ -46,19 +46,25 @@ const CREDIT_COSTS = {
46
46
  simulateTransaction: { cost: 1 },
47
47
  getTokenAccountsByOwner: { cost: 1 },
48
48
  getProgramAccounts: { cost: 1, notes: 'Can be expensive with large result sets' },
49
- // DAS API (10-100 credits)
49
+ // DAS API (10 credits each)
50
50
  getAsset: { cost: 10 },
51
- getAssetsByOwner: { cost: 10, notes: 'Per page of results' },
51
+ getAssetsByOwner: { cost: 10 },
52
52
  getAssetsByGroup: { cost: 10 },
53
53
  getAssetsByCreator: { cost: 10 },
54
- searchAssets: { cost: 10, notes: 'Complex queries may cost more' },
54
+ searchAssets: { cost: 10 },
55
55
  getAssetProof: { cost: 10 },
56
56
  getAssetBatch: { cost: '10 per asset' },
57
- // Enhanced Transactions
58
- parseTransactions: { cost: '10-50', notes: 'Depends on transaction complexity' },
59
- getTransactionHistory: { cost: 10 },
57
+ // Enhanced Transactions API (100 credits)
58
+ parseTransactions: { cost: 100 },
59
+ getTransactionHistory: { cost: '1-100', notes: 'signatures mode=1, parsed mode=100' },
60
+ getTransactionsForAddress: { cost: 100 },
60
61
  // Webhooks
61
- webhookDelivery: { cost: 1, notes: 'Per webhook event delivered' },
62
+ webhookDelivery: { cost: 1, notes: 'Per event delivered' },
63
+ webhookManagement: { cost: 100, notes: 'Create, edit, or delete operations' },
64
+ // Wallet API (100 credits each)
65
+ getWalletBalances: { cost: 100 },
66
+ getWalletHistory: { cost: 100 },
67
+ getWalletIdentity: { cost: 100 },
62
68
  // Enhanced WebSockets
63
69
  wsConnection: { cost: 1, notes: 'Per new connection opened' },
64
70
  wsDataStreaming: { cost: '3 per 0.1 MB', notes: 'Enhanced WS only; Standard WS is free' },
@@ -191,8 +191,10 @@ export function registerPlanTools(server) {
191
191
  '',
192
192
  '### Credit Costs',
193
193
  '- Standard RPC calls: 1 credit',
194
- '- DAS API calls: 10-100 credits',
195
- '- Enhanced transactions: 10-50 credits',
194
+ '- DAS API calls: 10 credits',
195
+ '- Enhanced Transactions API: 100 credits',
196
+ '- Wallet API: 100 credits',
197
+ '- Webhook events: 1 credit (management: 100)',
196
198
  '- Additional credits: $5 per million (all paid plans)',
197
199
  '',
198
200
  '**Docs:** https://www.helius.dev/pricing',
@@ -12,7 +12,7 @@ export function getApiKey() {
12
12
  throw new Error('API key not set. Please use the setHeliusApiKey tool first:\n\n' +
13
13
  ' Tool: setHeliusApiKey\n' +
14
14
  ' Arguments: { "apiKey": "your-helius-api-key" }\n\n' +
15
- 'Get your free API key at: https://dev.helius.xyz');
15
+ 'Get your free API key at: https://dashboard.helius.dev/api-keys');
16
16
  }
17
17
  return apiKey;
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helius-mcp",
3
- "version": "0.4.1",
3
+ "version": "0.4.5",
4
4
  "description": "Official Helius MCP Server - Complete Solana blockchain data access for Claude",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",