logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

solana-transaction-interface-module

Facilitate interaction with the Solana distributed ledger via straightforward Remote Procedure Call (RPC) methods, enabling retrieval of asset valuations, secure SOL value transfers, and detailed ledger entry inspection.

Author

solana-transaction-interface-module logo

akc2267

No License

Quick Info

GitHub GitHub Stars 1
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

solanarpcblockchainsolana blockchainakc2267 solanasolana mcp

Solana Ledger Access Utility

This component serves as a Model-Context-Protocol (MCP) handler specifically engineered for interfacing with the Solana network. It exposes simplified RPC endpoints to execute prevalent Solana operations.

Core Capabilities

  • Ascertain the most recent commitment slot index.
  • Query the current asset holdings for a given address.
  • Fetch comprehensive metadata pertaining to a specific account.
  • Output keypair cryptographic material details.
  • Remit SOL value between two distinct ledger participants.

Deployment Instructions

To commence usage, first clone the repository and install necessary package dependencies:

bash git clone https://github.com/yourusername/solana-mcp-server.git cd solana-mcp-server npm install

Next, compile the application source code:

bash npm run build

Finally, integrate this utility into your configuration file (claude_desktop_config.json):

"solana-rpc": { "command": "node", "args": [ "/PATH/TO/solana-mcp-server/build/index.js" ] }

Example Queries

Engage with the system using natural language requests such as: - What is the newest slot identifier on the Solana network? - Determine the SOL balance associated with address 62QXuWZ3WT6ws1ZFxJobVDVXn6bEsiYpLo5yG612U6u3. - Using this private material [REPLACE WITH SECRET KEY], please dispatch 0.001 SOL to recipient address [REPLACE WITH PUBLIC ADDRESS].

Prudence Advisory

Employ this utility exclusively with ephemeral or testing wallets containing negligible value.

Network Endpoint Configuration

The default operational setting targets Solana's primary ledger: https://api.mainnet-beta.solana.com. To switch to an alternate consensus environment (e.g., devnet or testnet), revise the SOLANA_RPC constant defined within src/index.ts.

See Also

`