@chainlink/mcp-server
Version:
Prototype MCP Server for CLL
90 lines • 3.09 kB
JSON
{
"name": "@chainlink/mcp-server",
"version": "0.0.1-alpha.11",
"description": "Prototype MCP Server for CLL",
"license": "MIT",
"author": "zeuslawyer & thodges-gh",
"main": "dist/index.js",
"bin": {
"chainlink-mcp-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smartcontractkit/mcp-server.git"
},
"homepage": "https://github.com/smartcontractkit/mcp-server#readme",
"bugs": {
"url": "https://github.com/smartcontractkit/mcp-server/issues"
},
"files": [
"dist",
"data"
],
"keywords": [
"mcp",
"model-context-protocol",
"chainlink",
"ccip",
"ai",
"llm",
"vector-database",
"documentation",
"blockchain",
"oracles"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.24.1",
"@lancedb/lancedb": "^0.19.1",
"@llamaindex/ollama": "^0.1.8",
"@llamaindex/openai": "^0.4.1",
"@modelcontextprotocol/sdk": "^1.8.0",
"apache-arrow": "^17.0.0",
"dotenv": "^16.4.7",
"llamaindex": "^0.11.3",
"node-fetch": "^2.7.0",
"ollama": "^0.5.16",
"openai": "^4.91.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@llamaindex/readers": "^3.1.5",
"@octokit/rest": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.14",
"@types/node-fetch": "^2.6.12",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"puppeteer": "^23.11.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"yargs": "^17.7.2"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --ci --watchAll=false --passWithNoTests",
"test:unit": "jest --testPathPattern='(src|scripts)/.*test.*'",
"test:integration": "RUN_INTEGRATION=true jest --testPathPattern='integration\\.test'",
"test:verbose": "JEST_VERBOSE=true jest --coverage --verbose",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "tsc --noEmit",
"lint:fix": "tsc --noEmit && prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
"build": "rm -rf dist && tsc -p tsconfig.mcp.json",
"build:production": "tsc && npx ts-node scripts/build-production.ts",
"build-dev": "rm -rf dist && tsc -p tsconfig.dev.json",
"serve": "node ./dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js -e MCP_ANTHROPIC_API_KEY=$MCP_ANTHROPIC_API_KEY",
"setup": "npx ts-node scripts/setup.ts",
"reset": "npx ts-node scripts/setup.ts --reset",
"vectordb": "npx ts-node scripts/vectordb.ts",
"ci": "npm run lint && npm run format:check && npm run test:ci && npm run build",
"dev": "npm run build-dev && npm run test:watch"
}
}