@polymerdao/mcp-polymer
Version:
A Model Context Protocol (MCP) server for blockchain event verification using Polymer's Prove API.
78 lines • 2.11 kB
JSON
{
"name": "@polymerdao/mcp-polymer",
"version": "0.2.5",
"description": "A Model Context Protocol (MCP) server for blockchain event verification using Polymer's Prove API.",
"main": "dist/main.js",
"bin": {
"mcp-polymer": "./dist/main.js"
},
"type": "module",
"scripts": {
"test": "npm run build && jest",
"test:watch": "jest --watch",
"test:coverage": "npm run build && jest --coverage",
"build": "tsc && chmod +x dist/main.js",
"clean": "rm -rf dist coverage",
"start": "node dist/main.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm test",
"postpublish": "echo 'Published mcp-polymer to npm registry'",
"postinstall": "chmod +x ./dist/main.js 2>/dev/null || true"
},
"keywords": [
"mcp",
"model-context-protocol",
"blockchain",
"verification",
"polymer",
"cryptographic-proofs",
"ethereum",
"ai-agents",
"cross-chain"
],
"author": "Polymer Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/polymerdao/mcp-polymer.git"
},
"bugs": {
"url": "https://github.com/polymerdao/mcp-polymer/issues"
},
"homepage": "https://github.com/polymerdao/mcp-polymer#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"axios": "^1.10.0",
"cors": "^2.8.5",
"ethers": "^6.15.0",
"express": "^5.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.12",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.8.3"
}
}