package.json•1.52 kB
{
"name": "chainfetch-mcp-server",
"version": "1.0.2",
"description": "A Model Context Protocol (MCP) server that provides access to ChainFETCH API for AI-powered Ethereum blockchain intelligence with advanced semantic search capabilities. Supports both stdio and HTTP transport modes.",
"main": "index.js",
"type": "module",
"bin": {
"chainfetch-mcp-server": "./index.js"
},
"scripts": {
"start": "node index.js",
"start:http": "MCP_HTTP_MODE=true node index.js",
"dev": "node --watch index.js",
"dev:http": "MCP_HTTP_MODE=true node --watch index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"chainfetch",
"blockchain",
"ethereum",
"ai",
"semantic-search",
"vector-database",
"smart-contracts",
"transactions",
"addresses",
"defi",
"api",
"crypto",
"web3"
],
"author": "ChainFETCH MCP Server",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chainfetch/chainfetch-mcp-server.git"
},
"bugs": {
"url": "https://github.com/chainfetch/chainfetch-mcp-server/issues"
},
"homepage": "https://github.com/chainfetch/chainfetch-mcp-server#readme",
"files": [
"index.js",
"README.md",
"LICENSE"
]
}