longbridge-mcp-docker
Verified Safeby WisdomShun
Overview
Provides a Dockerized Longport MCP (Model Context Protocol) 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
Security Notes
The project uses Docker Compose and environment variables for configuration, which is good practice for managing sensitive data. The `entrypoint.sh` script is well-structured, avoids 'eval' or other dangerous shell patterns, and correctly handles arguments and logging. The README explicitly highlights security best practices such as not committing `.env` files and protecting API credentials. The default `LONGPORT_READONLY` mode adds an extra layer of safety. The service binds to `0.0.0.0` internally, which is standard for Dockerized applications, and the README advises firewall configuration for public exposure, indicating awareness of network security.
Similar Servers
finance-trading-ai-agents-mcp
A specialized MCP server for financial analysis and quantitative trading, designed to deploy local financial MCP services with a departmental architecture for LLM integration and algorithmic trading.
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.
docker-mcp-server
A Model Context Protocol (MCP) server for containerized execution and file operations, enabling AI assistants to interact with a Docker environment via HTTP.
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.