Kibana for VS Code
io.github.tocharianou/kibana
Kibana MCP Server with dynamic API discovery and comprehensive Elastic Stack integration
client:VS Code
transport:stdio
runtime:npm
Install Kibana in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kibana-url",
"description": "KIBANA_URL",
"password": true
},
{
"type": "promptString",
"id": "kibana-api-key",
"description": "KIBANA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kibana-username",
"description": "KIBANA_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "kibana-password",
"description": "KIBANA_PASSWORD",
"password": true
}
],
"servers": {
"kibana": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@tocharianou/mcp-server-kibana"
],
"env": {
"KIBANA_URL": "${input:kibana-url}",
"KIBANA_API_KEY": "${input:kibana-api-key}",
"KIBANA_USERNAME": "${input:kibana-username}",
"KIBANA_PASSWORD": "${input:kibana-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs