@divvi/mcp-server
Version:
A Model Context Protocol (MCP) server that enables AI assistants to automatically integrate the @divvi/referral-sdk into JavaScript/TypeScript blockchain applications.
95 lines (94 loc) • 2.61 kB
JSON
{
"name": "@divvi/mcp-server",
"version": "1.1.36",
"description": "A Model Context Protocol (MCP) server that enables AI assistants to automatically integrate the @divvi/referral-sdk into JavaScript/TypeScript blockchain applications.",
"main": "dist/index.js",
"bin": {
"divvi-mcp-server": "dist/index.js"
},
"repository": "git@github.com:divvi-xyz/divvi-mcp-server.git",
"author": "Valora Inc",
"license": "Apache-2.0",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"ai",
"assistant",
"claude",
"anthropic",
"cursor",
"copilot",
"blockchain",
"web3",
"referral",
"divvi",
"javascript",
"typescript",
"sdk",
"integration"
],
"engines": {
"node": "^22"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"build:scripts": "tsc --project scripts/tsconfig.json",
"typecheck": "yarn build && yarn build:scripts",
"lint": "eslint --ext=.tsx,.ts,.json src/ scripts/",
"lint:fix": "yarn lint --fix",
"format": "prettier --log-level error --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --ci --coverage",
"supercheck": "yarn format && yarn lint:fix && yarn typecheck && yarn knip && yarn test",
"example": "ts-node ./scripts/example.ts",
"dev": "fastmcp dev src/index.ts",
"knip": "knip",
"prepare": "yarn build",
"release": "semantic-release"
},
"dependencies": {
"fastmcp": "^3.26.7",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/shelljs": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@valora/eslint-config-typescript": "^1.1.51",
"@valora/prettier-config": "^0.0.1",
"@wong2/mcp-cli": "^1.13.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^30.2.0",
"knip": "^5.79.0",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"shelljs": "^0.10.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"prettier": "@valora/prettier-config",
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}