package.json•1.89 kB
{
"name": "@bujaayjaay/mcp-coincap-jj",
"version": "1.1.0",
"description": "A Model Context Protocol (MCP) server that provides real-time cryptocurrency data and analysis through CoinCap's API v3. Features include price tracking, market analysis, and historical trends. This is a fork of the original repo by truss44, with updates to use the new API and additional future changes.",
"license": "MIT",
"author": {
"name": "wazzan"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"mcp-coincap-jj": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"start": "node dist/index.js",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"test": "jest src",
"test:coverage": "jest --coverage src"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.24",
"jest": "^29.7.0",
"semantic-release": "^24.2.3",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2"
},
"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/wazzan/mcp-coincap-jj.git"
},
"bugs": {
"url": "https://github.com/wazzan/mcp-coincap-jj/issues"
},
"homepage": "https://github.com/wazzan/mcp-coincap-jj"
}