hjlarry_dify-plugin-mcp_server

hjlarry_dify-plugin-mcp_server

3.4

A Dify endpoint plugin that transforms a Dify app into an MCP server.

The MCP Server is a plugin designed to convert a Dify application into a Model Context Protocol (MCP) server. This transformation allows the application to handle requests and responses in a structured manner, making it suitable for integration with various MCP clients. The plugin is particularly useful for creating secure, private network applications that require a robust protocol for managing data exchange. By defining input schemas and endpoints, users can customize their applications to perform specific tasks, such as retrieving weather information, and seamlessly integrate with tools like Cherry Studio.

Features

  • Transforms Dify apps into MCP servers
  • Supports secure data exchange within private networks
  • Customizable input schemas for specific tasks
  • Seamless integration with MCP clients like Cherry Studio

Usage with Different Platforms

dify


{
    "name": "get_weather",
    "description": "Get weather status for a place.",
    "inputSchema": {
        "properties": {
            "place": {"title": "Place", "type": "string"}
        },
        "required": ["place"],
        "title": "get_weatherArguments",
        "type": "object"
    }
}