package.json•1.58 kB
{
"name": "hedera-mcp-server",
"version": "0.1.0",
"description": "A production-grade MCP (Model-Context-Protocol) server for Hedera that integrates Hedera Agent Kit and @hashgraphonline/standards-agent-kit to support HCS-1, HCS-2, HCS-3, HCS-10, and HCS-11 standards. The server exposes RESTful APIs and an SSE-based MCP interface for decentralized AI agent communication.",
"main": "dist/index.js",
"scripts": {
"build": "vite build",
"start": "node dist/index.js",
"dev": "vite",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/hedera-mcp-server.git"
},
"keywords": [
"hedera",
"mcp",
"agent",
"decentralized",
"HCS-10",
"HCS-11",
"AI",
"blockchain"
],
"author": "Patches",
"license": "MIT",
"dependencies": {
"@hashgraph/sdk": "^2.14.2",
"@hashgraphonline/standards-agent-kit": "^0.0.15",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fastmcp": "^1.0.0",
"hedera-agent-kit": "^1.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.5.0",
"@types/node": "^18.19.86",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^6.2.6",
"vite-plugin-node": "^5.0.1"
}
}