overpod/dify-mcp-server
MCP server for Dify Console API — programmatic agent creation, knowledge base management, DSL import/export, workflow control. Works with self-hosted Dify v1.6+.
Platform-specific configuration:
{
"mcpServers": {
"dify-mcp-server": {
"command": "npx",
"args": [
"-y",
"dify-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://github.com/overpod/dify-mcp-server/releases) [](LICENSE) [](https://github.com/overpod/dify-mcp-server)
MCP server for Dify Console API — manage apps, workflows, knowledge bases, models, plugins, and MCP servers programmatically from Claude Code or any MCP client.
Works with self-hosted Dify v1.6+ instances (v1.10+ recommended for plugins and MCP tools).
Option A: Homebrew (macOS / Linux):
brew tap overpod/tap
brew install dify-mcp-serverOption B: Download binary (no dependencies needed):
# macOS (Apple Silicon)
curl -L https://github.com/overpod/dify-mcp-server/releases/latest/download/dify-mcp-server-darwin-arm64 -o dify-mcp-server
chmod +x dify-mcp-server
# macOS (Intel)
curl -L https://github.com/overpod/dify-mcp-server/releases/latest/download/dify-mcp-server-darwin-x64 -o dify-mcp-server
chmod +x dify-mcp-server
# Linux (x64)
curl -L https://github.com/overpod/dify-mcp-server/releases/latest/download/dify-mcp-server-linux-x64 -o dify-mcp-server
chmod +x dify-mcp-serverWindows:
Invoke-WebRequest -Uri "https://github.com/overpod/dify-mcp-server/releases/latest/download/dify-mcp-server-windows-x64.exe" -OutFile "dify-mcp-server.exe"Add to your `.mcp.json`:
{
"mcpServers": {
"dify": {
"command": "./dify-mcp-server",
"env": {
Loading reviews...