honeycomb
Verified Safeby betterhyq
Overview
A service configuration management platform based on Model Context Protocol (MCP), providing visual MCP service configuration and management.
Installation
pnpm startEnvironment Variables
- DATABASE_PATH
- PORT
- HOST
- NODE_ENV
- VITE_API_BASE_URL
Security Notes
The project uses `dotenv` for environment variable management and has a specific CORS origin configured, which are good security practices. The `ToolModel` and database schema include a `callback` field of type `string` intended to store JavaScript code. However, in the provided server-side `mcp.ts` file, the actual MCP server `registerTool` method uses a fixed anonymous function, and the `tool.callback` string from the database is currently unused for execution. This means there is no immediate Remote Code Execution (RCE) vulnerability from `eval`ing user-controlled code in the provided snippets. This is a critical distinction from an earlier assessment. Future implementations that activate this `callback` string for dynamic execution would introduce a severe RCE risk without robust sandboxing. Standard web application vulnerabilities (e.g., XSS, CSRF, insecure dependencies) may still apply but cannot be fully assessed from truncated code.
Similar Servers
mcp-compose
This server provides a robust example of OAuth2 authentication for MCP (Model Context Protocol) servers, using GitHub as the identity provider. It demonstrates secure multi-server management, protocol translation, and integration with AI agents for tool invocation.
mcp2skill-tools
Enables AI coding assistants like Claude Code to interact with various Model Context Protocol (MCP) servers and their tools via a unified REST API gateway.
QuickMCP
Building high-performance, enterprise-grade MCP (Model Context Protocol) servers using TypeScript, with built-in features for authentication, monitoring, and developer tools.
mcp-proxy-saas
An API gateway/proxy for Model Context Protocol (MCP) servers, providing authentication, security, and logging for multi-tenant applications.