package.json•1.63 kB
{
"name": "@rg2404/mcp-server-elasticsearch",
"description": "Elasticsearch MCP Server",
"version": "0.1.1",
"license": "Apache-2.0",
"author": "Elastic",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"mcp-server-elasticsearch": "./dist/index.js"
},
"repository": "https://github.com/elastic/mcp-server-elasticsearch",
"bugs": "https://github.com/elastic/mcp-server-elasticsearch/issues",
"homepage": "https://github.com/elastic/mcp-server-elasticsearch",
"keywords": [
"elasticsearch",
"search",
"mcp",
"mcp-server"
],
"files": [
"dist",
"NOTICE.txt",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "npm run build",
"license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause;0BSD'",
"license-header": "./scripts/check-spdx",
"generate-notice": "node ./scripts/generate-notice.js"
},
"dependencies": {
"@elastic/elasticsearch": "^8.15.0",
"@modelcontextprotocol/sdk": "1.11.2",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ioredis": "^5.6.1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/node": "22.14.1",
"license-checker": "25.0.1",
"shx": "0.4.0",
"typescript": "5.8.3"
},
"publishConfig": {
"access": "public"
}
}