├── .dockerignore ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_dev.md ├── docker-compose.yml ├── docs └── schematic.png ├── main.py ├── mcp-endpoint-server.cfg ├── requirements.txt └── src ├── core └── connection_manager.py ├── handlers └── websocket_handler.py ├── server.py └── utils ├── __init__.py ├── aes_utils.py ├── config.py ├── jsonrpc.py ├── logger.py └── util.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/README.md -------------------------------------------------------------------------------- /README_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/README_dev.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/docs/schematic.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/main.py -------------------------------------------------------------------------------- /mcp-endpoint-server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/mcp-endpoint-server.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/core/connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/core/connection_manager.py -------------------------------------------------------------------------------- /src/handlers/websocket_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/handlers/websocket_handler.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/server.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 工具模块 3 | """ 4 | 5 | __version__ = "0.0.6" 6 | -------------------------------------------------------------------------------- /src/utils/aes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/utils/aes_utils.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/utils/jsonrpc.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinnan-tech/mcp-endpoint-server/HEAD/src/utils/util.py --------------------------------------------------------------------------------