make dify's workflow as a MCP server
Author: hjlarry
Version: 0.0.4
Type: extension
Repo: https://github.com/hjlarry/dify-plugin-mcp_server
Feature Request: issues
A Dify endpoint plugin that change a dify app to a mcp server.
To keep your data secure, use this plugin exclusively within your private network.
The app's input schema must define its input parameters. For a chat dify app, ensure to include a query
field in the input schema, formatted as follows:
JSON1{
2 "name": "get_weather",
3 "description": "Get weather status for a place.",
4 "inputSchema": {
5 "properties": {
6 "place": {"title": "Place", "type": "string"}
7 },
8 "required": ["place"],
9 "title": "get_weatherArguments",
10 "type": "object"
11 }
12}
Cherry Studio
Auth Bearer Token
on the endpoint setting.For example, if your Auth Bearer Token
is setting to sk-abcdefgh
, then the request header of MCP client must add Authorization: Bearer sk-abcdefgh
ping
method of MCP client, some clients use this method to check server healthAuthorization: Bearer
token validator