yanxingliu_dify_mcp_server

yanxingliu_dify_mcp_server

by YanxingLiu

Prepare config.yaml

Skip to content

You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert

YanxingLiu / dify-mcp-server Public

Model Context Protocol (MCP) Server for dify workflows

141 stars
19 forks
Branches
Tags
Activity

Star

Notifications
You must be signed in to change notification settings

YanxingLiu/dify-mcp-server

main

2 Branches
0 Tags


Go to file

Code

Folders and files

| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------

YanxingLiu
YanxingLiu

Merge pull request
#7
from jaychempan/main

Mar 28, 2025

0e44202
 · Mar 28, 2025

History
-------

14 Commits

| | |
| src/dify_mcp_server | | src/dify_mcp_server | fix a bug when no input params | Dec 28, 2024 |
| .gitignore | | .gitignore | fix a bug when no input params | Dec 28, 2024 |
| .python-version | | .python-version | first commit | Dec 25, 2024 |
| Dockerfile | | Dockerfile | Add Dockerfile | Jan 25, 2025 |
| README.md | | README.md | Updated usage details | Mar 28, 2025 |
| pyproject.toml | | pyproject.toml | update build wheels | Mar 13, 2025 |
| smithery.yaml | | smithery.yaml | Add Smithery configuration | Jan 25, 2025 |
| uv.lock | | uv.lock | first commit | Dec 25, 2024 |
| View all files | | |

Repository files navigation

Model Context Protocol (MCP) Server for dify workflows

A simple implementation of an MCP server for using dify
. It achieves the invocation of the Dify workflow by calling the tools of MCP.

🔨Installation

The server can be installed via Smithery
or manually. Config.yaml is required for both methods. Thus, we need to prepare it before installation.

Prepare config.yaml

Before using the mcp server, you should prepare a config.yaml to save your dify_base_url and dify_sks. The example config like this:

dify_base_url: "https://cloud.dify.ai/v1"
dify_app_sks:
  - "app-sk1"
  - "app-sk2"

You can run the following command in your terminal to quickly create a configuration file:

mkdir -p ~/tools && cat > ~/tools/config.yaml <<EOF
dify_base_url: "https://cloud.dify.ai/v1"
dify_app_sks:
  - "app-sk1"
  - "app-sk2"
EOF

Different SKs correspond to different dify workflows.

Installing via Smithery

smithery
is a tool to install the dify mcp server automatically. To install Dify MCP Server for Claude Desktop automatically via Smithery
:

Tips: npm has added the npx command since version 5.2. Mac users can use brew install node install the npm aand

npx -y @smithery/cli install dify-mcp-server --client claude

In addition to claude, cline, windsurf, roo-cline, witsy, enconvo, cursor are also supported.

Manual Installation

❓ If you haven't installed uv or uvx yet, you can do it quickly with the following command:

curl -Ls https://astral.sh/uv/install.sh | sh

✅ Method 1: Use uv (local clone + uv start)

You can also run the dify mcp server manually in your clients. The config of client should like the following format:

{
"mcpServers": {
  "mcp-server-rag-web-browser": {
    "command": "uv",
      "args": [\
        "--directory", "${DIFY_MCP_SERVER_PATH}",\
        "run", "dify_mcp_server"\
      ],
    "env": {
       "CONFIG_PATH": "$CONFIG_PATH"
    }
  }
}
}

Example config:

{
"mcpServers": {
  "dify-mcp-server": {
    "command": "uv",
      "args": [\
        "--directory", "/Users/lyx/Downloads/dify-mcp-server",\
        "run", "dify_mcp_server"\
      ],
    "env": {
       "CONFIG_PATH": "/Users/lyx/Downloads/config.yaml"
    }
  }
}
}

✅ Method 2: Use uvx (no need to clone code, recommended)

"mcpServers": {
  "dify-mcp-server": {
    "command": "uvx",
      "args": [\
        "--from","git+https://github.com/YanxingLiu/dify-mcp-server","dify_mcp_server"\
      ],
    "env": {
       "CONFIG_PATH": "/Users/lyx/Downloads/config.yaml"
    }
  }
}

Enjoy it

At last, you can use dify tools in any client who supports mcp.

About

Model Context Protocol (MCP) Server for dify workflows

Resources

Readme

Activity

Stars

141 stars

Watchers

1 watching

Forks

19 forks

Report repository

Releases


No releases published

Packages 0


No packages published

Contributors 3


Languages

You can’t perform that action at this time.

Features & Capabilities

Categories
mcp_server model_context_protocol

Implementation Details

Stats

0 Views
141 GitHub Stars

Repository Info

YanxingLiu Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300