├── .gitignore ├── .python-version ├── Dockerfile ├── README.md ├── pyproject.toml ├── smithery.yaml ├── src └── dify_mcp_server │ ├── __init__.py │ └── server.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/dify_mcp_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/src/dify_mcp_server/__init__.py -------------------------------------------------------------------------------- /src/dify_mcp_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/src/dify_mcp_server/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanxingLiu/dify-mcp-server/HEAD/uv.lock --------------------------------------------------------------------------------