package.json•1.82 kB
{
"name": "@elastic/mcp-server-elasticsearch",
"description": "Elasticsearch MCP Server",
"version": "0.3.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": [
"package.json",
"dist",
"NOTICE.txt",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "npm run lint && 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",
"lint": "ts-standard *.ts",
"lint:fix": "ts-standard --fix *.ts",
"build-docker-image": "docker buildx build -t mcp/elasticsearch --platform linux/amd64,linux/arm64 ."
},
"dependencies": {
"@arizeai/openinference-instrumentation-mcp": "^0.2.0",
"@elastic/elasticsearch": "^9.0.0",
"@elastic/opentelemetry-node": "^1.1.1",
"@modelcontextprotocol/sdk": "1.13.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "22.16.0",
"license-checker": "25.0.1",
"ts-standard": "12.0.2",
"typescript": "5.8.3"
},
"publishConfig": {
"access": "public"
}
}