package.json•2.24 kB
{
"name": "mcp-crypto-price",
"version": "2.1.1",
"description": "A Model Context Protocol (MCP) server that provides real-time cryptocurrency data and analysis through CoinCap's API. Features include price tracking, market analysis, and historical trends.",
"license": "MIT",
"author": {
"name": "Tracey Russell"
},
"type": "module",
"module": "src/index.ts",
"bin": {
"mcp-crypto-price": "./dist/index.js"
},
"files": [
"dist",
"dist/**/*"
],
"main": "./dist/index.js",
"scripts": {
"dev": "npx @smithery/cli dev",
"build": "npm run build:http",
"build:stdio": "tsc && shx chmod +x dist/*.js",
"build:http": "npx @smithery/cli build",
"start": "npm run start:http",
"start:http": "node .smithery/index.cjs",
"start:stdio": "node dist/index.js",
"prepare": "npm run build:stdio",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage",
"prepublishOnly": "npm run build:stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"@smithery/sdk": "^1.6.7",
"zod": "^3.25.46"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.2",
"conventional-changelog-conventionalcommits": "^9.1.0",
"jest": "^30.2.0",
"semantic-release": "^24.2.3",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"claude",
"crypto",
"cryptocurrency",
"coincap",
"price",
"market-analysis",
"trading",
"finance"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truss44/mcp-crypto-price.git"
},
"bugs": {
"url": "https://github.com/truss44/mcp-crypto-price/issues"
},
"homepage": "https://github.com/truss44/mcp-crypto-price"
}