- Clear crush.json MCP section for focused UAT - Keep only elasticsearch-mcp for testing - Retain all LSP server configurations
26 lines
727 B
JSON
26 lines
727 B
JSON
{
|
|
"$schema": "https://charm.land/crush.json",
|
|
"lsp": {
|
|
"bash": {
|
|
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/lsp-bash-wrapper.sh"
|
|
},
|
|
"docker": {
|
|
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/lsp-docker-wrapper.sh"
|
|
},
|
|
"markdown": {
|
|
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/lsp-marksman-wrapper.sh"
|
|
}
|
|
},
|
|
"mcp": {
|
|
"elasticsearch": {
|
|
"command": "docker",
|
|
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-elasticsearch-mcp"],
|
|
"env": {
|
|
"ELASTICSEARCH_URL": "http://localhost:9200",
|
|
"ELASTICSEARCH_USERNAME": "elastic",
|
|
"ELASTICSEARCH_PASSWORD": "your-password-here"
|
|
}
|
|
}
|
|
}
|
|
}
|