Cognio
Verified Safeby 0xReLogic
Overview
Cognio provides persistent semantic memory for AI assistants, enabling long-term context retention and semantic search across conversations.
Installation
npx -y @0xrelogic/cognio-mcpEnvironment Variables
- API_KEY
- GROQ_API_KEY
- OPENAI_API_KEY
- COGNIO_API_URL
- COGNIO_API_KEY
Security Notes
The default CORS configuration allows all origins (`allow_origins=["*"]`), which is a significant security risk for production deployments. API key authentication is optional by default (`API_KEY=None`), meaning the API is open unless explicitly configured. The Node.js MCP server and setup scripts use `execSync`, but this is for controlled, internal auto-configuration (e.g., writing client config files) rather than executing arbitrary user input, which mitigates immediate exploit concerns. LLM API keys (Groq, OpenAI) are loaded from environment variables, which is good practice. SQL queries use parameterization, preventing SQL injection.
Similar Servers
memory-mcp-server-go
A Model Context Protocol server providing knowledge graph management capabilities for LLMs to maintain memory across conversations.
knowns
A CLI-first knowledge layer and task/documentation management tool that provides AI agents with persistent project context.
claude-conversation-memory-mcp
Provides long-term memory for AI coding agents by indexing conversation history, tracking decisions and mistakes, and enabling semantic search across projects.
post-cortex
Provides long-term, persistent memory and knowledge management for AI assistants, enabling them to store, semantically search, and retrieve conversation context, decisions, and code-related insights.