package.json•2.34 kB
{
"name": "@tocharian/mcp-server-kibana",
"description": "Kibana MCP Server",
"version": "0.4.1",
"license": "Apache-2.0",
"author": "TocharinOU",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"mcp-server-kibana": "./dist/index.js"
},
"repository": "https://github.com/TocharianOU/mcp-server-kibana",
"bugs": "https://github.com/TocharianOU/mcp-server-kibana/issues",
"homepage": "https://github.com/TocharianOU/mcp-server-kibana",
"keywords": [
"kibana",
"mcp",
"mcp-server",
"elasticsearch",
"model-context-protocol"
],
"files": [
"dist",
"LICENSE",
"README.md",
"kibana-openapi-source.yaml"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js && npm run copy-yaml",
"copy-yaml": "shx cp ./kibana-openapi-source.yaml dist/ && shx cp ./kibana-openapi-source.yaml dist/src/",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"start:ts": "NODE_OPTIONS=\"--loader ts-node/esm\" node index.ts",
"start:http:ts": "MCP_TRANSPORT=http NODE_OPTIONS=\"--loader ts-node/esm\" node index.ts",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspector:ts": "NODE_OPTIONS=\"--loader ts-node/esm\" npx @modelcontextprotocol/inspector node index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"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": {
"@modelcontextprotocol/sdk": "^1.18.2",
"@types/express": "^5.0.3",
"ajv": "^8.17.1",
"axios": "^1.8.4",
"express": "^5.1.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"ts-node": "^10.9.2",
"zod": "^3.24.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.13.15",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"shx": "0.4.0",
"ts-jest": "^29.1.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}