We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iunera/druid-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•1.11 KiB
# SSE (Docker) Examples
This folder contains Docker-focused examples for running the Druid MCP Server exposing the SSE endpoint (HTTP streaming). These examples are designed for clients that connect over HTTP to an already-running server.
We focus on environment variable configuration. No Java/JAR commands are required.
## Quick use with MCP client
Point your MCP client to this config file:
- [mcpservers-sse.json](mcpservers-sse.json)
This tells your client to connect to the SSE URL. You must run the server container separately (see below).
## Run the server with Docker
Expose the HTTP port and configure Druid access via environment variables:
```bash
docker run --rm -p 8080:8080 \
-e DRUID_ROUTER_URL=http://host.docker.internal:8888 \
iunera/druid-mcp-server:1.2.2
```
Common environment variables:
- DRUID_ROUTER_URL (default used above)
- DRUID_AUTH_USERNAME
- DRUID_AUTH_PASSWORD
- DRUID_SSL_ENABLED (true/false)
- DRUID_SSL_SKIP_VERIFICATION (true/false)
- DRUID_MCP_READONLY (true/false)
SSE endpoint will be available at:
- http://localhost:8080/sse
Adjust -p 8080:8080 if you need a different port.