{
"name": "mpc-tally-api-server",
"version": "1.1.3",
"homepage": "https://github.com/crazyrabbitLTC/mpc-tally-api-server",
"description": "A Model Context Protocol (MCP) server for interacting with the Tally API, enabling AI agents to access DAO governance data",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"mpc-tally-api-server": "build/index.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "bun build ./src/index.ts --outdir ./build --target node",
"start": "node -r dotenv/config build/index.js",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"tally",
"dao",
"governance",
"ai",
"typescript",
"graphql"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"graphql-tag": "^2.12.6",
"mcp-test-client": "^1.0.1"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"bun-types": "^1.1.42",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.0.0",
"zod": "^3.24.1"
},
"engines": {
"node": ">=18"
}
}