aeron-cache
Verified Safeby bhf
Overview
A high-performance, clustered key-value store with various interfaces (HTTP, WS, SSE) and a UI, designed to function as an MCP server for Agentic AI and LLM workflows.
Installation
docker run --rm -i -v api-spec-swagger2.json:/server/swagger.json ghcr.io/brizzai/auto-mcp:latest --swagger-file=/server/swagger.jsonEnvironment Variables
- AERON_CACHE_API
- AERON_CACHE_WS_API
- AERON_CACHE_SSE_API
- JAEGER
- PROMETHEUS
- CLUSTER_NODE
- CLUSTER_ADDRESSES
- CACHE_MODE
- HTTP_RESPONSE_PUB_HOST
- WS_RESPONSE_PUB_HOST
- SSE_RESPONSE_PUB_HOST
- OTEL_SERVICE_NAME
- OTEL_EXPORTER_OTLP_ENDPOINT
- POD_NAME
Security Notes
Environment variables are used for service endpoints (e.g., AERON_CACHE_API, JAEGER, PROMETHEUS, AERON_CACHE_WS_API, AERON_CACHE_SSE_API), which is a good practice to avoid hardcoding sensitive information. Basic input validation for `cacheId` is present in the UI. However, the `cache-ui/nextjs/next.config.ts` explicitly sets `eslint: { ignoreDuringBuilds: true, }`, which is a significant code quality and potential security risk as it can suppress important warnings that might indicate vulnerabilities or bad practices. The `cache-mcp` component relies on a third-party Docker image (`ghcr.io/brizzai/auto-mcp:latest`), requiring trust in its security and maintenance. No direct `eval` or similar dangerous patterns were observed in the provided snippets.
Similar Servers
metorial-platform
An open source integration platform for agentic AI, connecting AI models to external APIs, data sources, and tools.
memorizer-v1
A .NET-based service for AI agents to store, retrieve, and search through memories using vector embeddings, featuring asynchronous chunking, version control, and relationship management.
chronosphere-mcp
The Chronosphere MCP server acts as an intermediary, exposing Chronosphere monitoring data (logs, metrics, traces, events) and configuration as tools for AI applications and agents.
mcp-fastmcp-starter
Provides a minimal, production-minded MCP-shaped tool server for building agentic AI services with typed tool contracts and deterministic JSON I/O via FastAPI.