Skip to content
VS Code

crowdsentinel mcp server for VS Code

io.github.thomasxm/crowdsentinel-mcp-server

AI threat hunting & incident response for Elasticsearch/OpenSearch with endpoint & network forensics

client:VS Code transport:stdio runtime:pypi

Install crowdsentinel mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "elasticsearch-hosts",
      "description": "ELASTICSEARCH_HOSTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elasticsearch-cloud-id",
      "description": "ELASTICSEARCH_CLOUD_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elasticsearch-api-key",
      "description": "ELASTICSEARCH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elasticsearch-username",
      "description": "ELASTICSEARCH_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elasticsearch-password",
      "description": "ELASTICSEARCH_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elasticsearch-bearer-token",
      "description": "ELASTICSEARCH_BEARER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verify-certs",
      "description": "VERIFY_CERTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "request-timeout",
      "description": "REQUEST_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "crowdsentinel-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "crowdsentinel-mcp-server"
      ],
      "env": {
        "ELASTICSEARCH_HOSTS": "${input:elasticsearch-hosts}",
        "ELASTICSEARCH_CLOUD_ID": "${input:elasticsearch-cloud-id}",
        "ELASTICSEARCH_API_KEY": "${input:elasticsearch-api-key}",
        "ELASTICSEARCH_USERNAME": "${input:elasticsearch-username}",
        "ELASTICSEARCH_PASSWORD": "${input:elasticsearch-password}",
        "ELASTICSEARCH_BEARER_TOKEN": "${input:elasticsearch-bearer-token}",
        "VERIFY_CERTS": "${input:verify-certs}",
        "REQUEST_TIMEOUT": "${input:request-timeout}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

crowdsentinel mcp server in other clients