NeuralLog Server
@NeuralLog
关于 NeuralLog Server
Central logging server for the AI-MCP-Logger ecosystem
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"server-neurallog": {
"command": "docker",
"args": [
"build",
"-t",
"neurallog-server",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is NeuralLog Server?
NeuralLog Server is the central server component of the NeuralLog intelligent logging system. It provides RESTful APIs for log management and storage, and supports the MCP (Model Context Protocol) ecosystem. It is designed for developers and operators who need to capture log events, analyze patterns, and trigger configurable actions.
How to use NeuralLog Server?
Deploy using Docker Compose with one of three storage adapters: Memory (development/testing), NeDB (small-scale), or Redis (production recommended). Use commands like docker-compose -f docker-compose.redis.yml up -d or the equivalent npm script. Configure storage via the STORAGE_TYPE environment variable. The server can also be deployed to Kubernetes using provided k8s manifests. Access the REST API at the configured port (default 3030 for Redis, 3031 for NeDB, 3032 for Memory).
Key features of NeuralLog Server
- RESTful API for log management and retrieval
- Support for Memory, NeDB, and Redis storage adapters
- Namespace support for logical data isolation
- Persistent storage with Docker volumes
- Comprehensive search capabilities and statistics tracking
- MCP client integration and multi-tenant support
- Kubernetes deployment support with ConfigMaps and Secrets
Use cases of NeuralLog Server
- Centralized log aggregation from multiple applications
- Search and analysis of log events with filtering criteria
- Integration with MCP clients (TypeScript, Unity, Python)
- Multi-tenant log management using namespaces
- Production-scale logging with Redis-backed persistent storage
FAQ from NeuralLog Server
What storage backends are available?
Memory (data lost on restart), NeDB (file-based, small-scale), and Redis (production recommended). Configure via STORAGE_TYPE environment variable.
How do I run the server with persistent data?
Use Docker Compose with NeDB (docker-compose -f docker-compose.nedb.yml up -d) or Redis (docker-compose -f docker-compose.redis.yml up -d). Data is stored in Docker volumes.
What ports does the server use?
Redis storage: 3030; NeDB storage: 3031; Memory storage: 3032. The port can be changed with the PORT environment variable.
Can I deploy NeuralLog Server on Kubernetes?
Yes, use the provided k8s configuration files with kubectl apply -k k8s. An Ingress is configured at http://neurallog.local.
How do I test the server end-to-end?
Run the built-in end-to-end tests with npm run test:e2e, which starts the server via Docker Compose, runs a client, and cleans up. Manual testing with curl is also documented.
其他 分类下的更多 MCP 服务器
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
评论