package.json•890 B
{
"name": "algorand-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server with Algorand blockchain capabilities",
"main": "dist/index.js",
"type": "module",
"bin": {
"algorand-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "node test/test-server.mjs",
"clean": "rimraf dist"
},
"keywords": [
"mcp",
"algorand",
"ai",
"tools"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^24.2.0",
"@types/node-fetch": "^2.6.13",
"typescript": "^5.9.2"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^9.1.2",
"@modelcontextprotocol/sdk": "^1.17.1",
"algosdk": "^3.4.0",
"dotenv": "^17.2.1",
"node-fetch": "^2.7.0",
"zod": "^3.25.76"
}
}