package.json•1.36 kB
{
"name": "@aptos-mcp/aptos-blockchain-mcp",
"version": "0.1.0",
"description": "MCP server for Aptos blockchain - enables AI applications to interact with Aptos testnet and mainnet",
"license": "MIT",
"author": "Aptos MCP Contributors",
"homepage": "https://aptos.dev",
"repository": {
"type": "git",
"url": "https://github.com/your-username/aptos_mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"aptos",
"blockchain",
"web3",
"ai",
"claude",
"typescript"
],
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"bin": {
"aptos-mcp-server": "build/index.js"
},
"files": [
"build",
"smithery.yaml",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "npm run build && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.28.0",
"@modelcontextprotocol/sdk": "1.6.1",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^22",
"@types/express": "^4.17.17",
"@types/cors": "^2.8.13",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
}
}