UNPKG

elasticsearch-mcp

Version:

Secure MCP server for Elasticsearch integration with comprehensive tools and Elastic Cloud support

74 lines 1.9 kB
{ "name": "elasticsearch-mcp", "version": "0.1.3", "description": "Secure MCP server for Elasticsearch integration with comprehensive tools and Elastic Cloud support", "main": "build/index.js", "bin": { "elasticsearch-mcp": "./build/index.js" }, "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node build/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "prepare": "husky install", "prepublishOnly": "npm run build" }, "keywords": [ "elasticsearch", "mcp", "model-context-protocol", "elastic-cloud", "search", "analytics", "data-export", "claude", "typescript", "security" ], "author": "Your Organization", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/RajwardhanShinde/elk-mcp.git" }, "bugs": { "url": "https://github.com/RajwardhanShinde/elk-mcp/issues" }, "homepage": "https://github.com/RajwardhanShinde/elk-mcp#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "@elastic/elasticsearch": "^8.11.0", "zod": "^3.22.0", "csv-writer": "^1.6.0" }, "devDependencies": { "@types/node": "^20.0.0", "@types/jest": "^29.5.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", "tsx": "^4.0.0", "typescript": "^5.0.0" }, "files": [ "build/", "README.md", "LICENSE" ] }