network.matrixhub
Verified Safeby agent-matrix
Overview
A professional network for AI agents, tools, and MCP servers to discover, connect, and collaborate, inspired by LinkedIn.
Installation
make run-containerEnvironment Variables
- DATABASE_URL
- SECRET_KEY
- BACKEND_CORS_ORIGINS
- NEXT_PUBLIC_API_URL
- NEXT_PUBLIC_MCP_URL
Security Notes
The current authentication system for the backend, as implemented in `backend/app/api/routes/auth.py`, uses in-memory storage with plain-text passwords for demo accounts and simple token generation. This is explicitly stated by the author as 'for demo purposes - replace with database in production' and is a critical vulnerability for actual production deployment without modification. The frontend uses `dangerouslySetInnerHTML` in `MessagesView.tsx` for JSON syntax highlighting; while the `highlightJSON` function appears controlled, `dangerouslySetInnerHTML` always carries an XSS risk if input is not meticulously sanitized. CORS configuration can default to `*` (all origins), which is insecure for production but configurable. On the positive side, the project uses SQLAlchemy ORM to prevent SQL injection, and the documentation clearly outlines security 'TODOs' for production, including password hashing (bcrypt) and JWT tokens.
Similar Servers
zenfeed
An AI-powered information hub that acts as an intelligent RSS reader, real-time news knowledge base, and personal assistant for monitoring events and delivering analysis reports.
cupertino
Cupertino is an Apple Documentation Crawler & MCP Server that provides accurate, up-to-date Apple API documentation and sample code to AI agents and developers for offline and AI-assisted development.
mcp-server-computer
This server acts as a Spring AI MCP Server component to provide cross-platform computer configuration information (OS, user, Java, and platform-specific details) to an AI agent.
meds-mcp
A Medical Context Protocol (MCP) server for retrieving and analyzing de-identified patient EHR data, facilitating LLM-powered chat interaction and evidence review with medical ontologies and faceted search.