longbridge-mcp-docker
Verified Safeby metaif
Overview
Provides a Dockerized wrapper for the Longport Model Context Protocol (MCP) server for easy deployment and management of Longport API services.
Installation
docker run -d --name longport-mcp-server -e LONGPORT_APP_KEY='<your_app_key>' -e LONGPORT_APP_SECRET='<your_app_secret>' -e LONGPORT_ACCESS_TOKEN='<your_access_token>' -e LONGPORT_READONLY=true -p 8000:8000 -v ./logs:/var/log/longport-mcp ghcr.io/metaif/longportmcpdocker:latestEnvironment Variables
- LONGPORT_APP_KEY
- LONGPORT_APP_SECRET
- LONGPORT_ACCESS_TOKEN
- LONGPORT_READONLY
- SERVER_PORT
Security Notes
The Docker wrapper itself follows good security practices: credentials are handled via environment variables with a clear warning not to commit the .env file, the service defaults to a 'read-only' mode, and there are no apparent 'eval' or malicious patterns in the provided scripts. Network binding is to all interfaces (0.0.0.0:8000), but the README correctly advises on firewall configuration for public exposure. The core 'longport-mcp' binary's source is not provided in this repo, so its internal security cannot be fully audited here.
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.
mcp-servers
Provides an MCP server for Qdrant vector database integration, enabling AI agents to perform semantic search, store documents, and manage collections with advanced multi-tenant filtering capabilities.
mcp_docker
Manages Docker containers, images, networks, and volumes for AI assistants via the Model Context Protocol (MCP).
ai-mcp-server-client-fastmcp
Builds a local MCP server with stock market tools for a LangChain AI agent to fetch financial data.