Solana MCP Server
by akc2267
Verified
{
"name": "solana-mcp-server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"bin": {
"solana-mcp": "./build/index.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && tsc && chmod +x build/index.js",
"start": "node build/index.js"
},
"files": [
"build"
],
"keywords": [
"solana",
"mcp",
"rpc",
"blockchain"
],
"author": "",
"license": "ISC",
"description": "Solana RPC Model-Context-Protocol Server",
"repository": {
"type": "git",
"url": "https://github.com/akc2267/solana-mcp-server.git"
},
"homepage": "https://github.com/akc2267/solana-mcp-server#readme",
"bugs": {
"url": "https://github.com/akc2267/solana-mcp-server/issues"
},
"contributors": [
{
"name": "Alex Cheng",
"email": "alexanderkcheng@gmail.com",
"url": "https://github.com/akc2267"
}
],
"engines": {
"node": ">=14.0.0"
},
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"@solana/web3.js": "^1.87.6",
"bs58": "^5.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.13.1",
"typescript": "^5.7.3"
}
}