drand-mcp-server
Version:
A model context protocol server for drand
61 lines (60 loc) • 1.54 kB
JSON
{
"name": "drand-mcp-server",
"version": "0.0.1-rc1",
"description": "A model context protocol server for drand",
"keywords": [
"drand",
"verifiable",
"randomness",
"mcp",
"randamu",
"AI"
],
"homepage": "https://github.com/randa-mu/drand-mcp-server#readme",
"bugs": {
"url": "https://github.com/randa-mu/drand-mcp-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/randa-mu/drand-mcp-server.git"
},
"license": "MIT",
"author": "Randamu",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.mjs",
"bin": {
"drand-mcp-server": "./dist/index.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node ./dist/index.mjs",
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outdir=dist --sourcemap --target=es2020 --out-extension:.js=.mjs --banner:js='#!/usr/bin/env node'",
"clean": "rm -rf dist",
"lint": "eslint src",
"lint:fix": "eslint --fix",
"test": "jest ./test/*.test.ts"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.19",
"esbuild": "^0.25.4",
"eslint": "^9.27.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"cross-fetch": "^4.1.0",
"drand-client": "^1.4.2",
"zod": "^3.24.4"
}
}