UNPKG

stellar-mcp-cli

Version:

CLI tool that transforms any Soroban Smart Contract into an AI-ready Model Context Protocol (MCP) server

30 lines 681 B
{ "name": "INSERT_NAME_HERE", "version": "0.0.1", "description": "MCP Server for Soroban Smart Contract", "type": "module", "bin": { "INSERT_NAME_HERE": "./build/index.js" }, "scripts": { "build": "tsx build.ts && chmod 755 build/index.js", "start": "node build/index.js", "dev": "tsx watch src/index.ts" }, "files": [ "build" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "@stellar/stellar-sdk": "^13.0.0", "sac-sdk": "^0.3.6", "zod": "^3.22.0", "dotenv": "^16.4.7" }, "devDependencies": { "@types/node": "^20.0.0", "typescript": "^5.0.0", "tsx": "^4.7.0", "esbuild": "^0.20.2" } }