The iFlytek Workflow MCP Server is a simple implementation of an MCP (Model Context Protocol) server that enables calling iFlytek workflows through MCP tools. It provides a standardized framework for integrating workflows with external data sources or tools, making it ideal for various business scenarios.
The iFlytek Workflow MCP Server is built on the Model Context Protocol (MCP), an open protocol designed for seamless integration between LLM applications and external data sources. This server allows users to trigger and manage iFlytek workflows programmatically, offering advanced orchestration and execution modes.
config.yaml
Before using the MCP server, prepare a config.yaml
file with your workflow information:
- flow_id: 'flow id' # required
name: 'flow name' # optional
description: 'flow description' # optional
api_key: 'API Key:API Secret' # required
Add the following to your claude_desktop_config.json
or mcp.json
file:
{
"mcpServers": {
"ifly-workflow-mcp-server": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/iflytek/ifly-workflow-mcp-server",
"ifly_workflow_mcp_server"
],
"env": {
"CONFIG_PATH": "$CONFIG_PATH"
}
}
}
}
Example configuration:
{
"mcpServers": {
"ifly-workflow-mcp-server": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/iflytek/ifly-workflow-mcp-server",
"ifly_workflow_mcp_server"
],
"env": {
"CONFIG_PATH": "/Users/hygao1024/Projects/config.yaml"
}
}
}
}
The iFlytek Workflow MCP Server is a lightweight implementation that integrates iFlytek workflows with MCP tools. It is licensed under the MIT License.