The Dify Plugin MCP HTTP with SSE Tools is a powerful plugin designed to fetch and call tools using the MCP protocol over HTTP with Server-Sent Events (SSE) transport. This plugin integrates seamlessly with the Dify platform, enabling users to discover and utilize tools efficiently.
The plugin supports multiple MCP services. Below is an example configuration:
{
"server_name1": {
"url": "http://127.0.0.1:8000/sse",
"headers": {},
"timeout": 60,
"sse_read_timeout": 300
},
"server_name2": {
"url": "http://127.0.0.1:8001/sse"
}
}
Alternatively, you can use the following format:
{
"mcpServers": {
"server_name1": {
"url": "http://127.0.0.1:8000/sse",
"headers": {},
"timeout": 60,
"sse_read_timeout": 300
},
"server_name2": {
"url": "http://127.0.0.1:8001/sse"
}
}
}
If you prefer not to deploy your own MCP server, you can connect to managed MCP servers.
{
"tavily": {
"url": "https://mcp.composio.dev/tavily/xxxx-xxxx-xxxx-xxxx"
}
}
{
"mcpServers": {
"@tavily-ai/tavily-mcp": {
"url": "https://router.mcp.so/sse/xxxxxxxxxx"
}
}
}
Issue: If you encounter the error message: "plugin verification has been enabled, and the plugin you want to install has a bad signature," how to handle the issue?
Solution: Add the following line to the end of your .env
configuration file:
FORCE_VERIFYING_SIGNATURE=false
This will allow the installation of all plugins that are not listed (and thus not verified) in the Dify Marketplace.
This project is licensed under the terms of the MIT license.