package.json•2.35 kB
{
"name": "@ExpertVagabond/solana-mcp-server",
"version": "1.0.0",
"description": "Solana MCP server for wallet management, transaction handling, and program interactions on Solana blockchain",
"main": "dist/index.js",
"module": "./src/index.ts",
"bin": {
"solana-mcp-server": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"build:smithery": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"start": "node dist/index.js",
"test": "node test-simple.js",
"test:jest": "jest",
"prepare": "npm run build",
"postinstall": "npm run install-solana",
"install-solana": "npm install -g @solana/cli@latest --yes --silent || echo 'Solana CLI installation failed, but MCP will work with web3.js'",
"publish:npm": "npm publish --access public",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"quality": "npm run lint && npm run format:check && npm run type-check && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"@solana/web3.js": "^1.95.2",
"@solana/spl-token": "^0.4.8",
"@coral-xyz/anchor": "^0.32.1",
"bs58": "^5.0.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.7.2",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"jest": "^30.2.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"solana",
"blockchain",
"wallet",
"defi",
"web3",
"smart-contracts",
"spl-tokens",
"anchor"
],
"author": "ExpertVagabond",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ExpertVagabond/solana-mcp-server.git"
},
"bugs": {
"url": "https://github.com/ExpertVagabond/solana-mcp-server/issues"
},
"homepage": "https://github.com/ExpertVagabond/solana-mcp-server#readme"
}