A Dify endpoint plugin that transforms a Dify app into an MCP server. To keep your data secure, use this plugin exclusively within your private network.
The Dify MCP Server Plugin allows you to convert a Dify application into an MCP server, enabling seamless integration with MCP clients like Cherry Studio. This plugin is designed to work with simple workflow apps in Dify, ensuring that the app's input schema is properly defined for MCP compatibility.
Ensure the app's input schema defines its input parameters. For a chat Dify app, include a query
field in the input schema, formatted as follows:
{
"name": "get_weather",
"description": "Get weather status for a place.",
"inputSchema": {
"properties": {
"place": {"title": "Place", "type": "string"}
},
"required": ["place"],
"title": "get_weatherArguments",
"type": "object"
}
}