构建工作流最快的AI代理平台!
模型上下文协议 (MCP) 是一个开放协议,旨在简化LLM应用与外部数据源或工具之间的集成,提供了一个标准化框架,使LLM能够无缝获取所需上下文。
这是一个使用iFlytek实现的简单MCP服务器。它通过MCP工具支持调用iFlytek工作流。
该系统基于iFlytek MCP服务器构建,支持智能工作流调度,适用于各种业务场景。
在使用 mcp 服务器之前,您应该准备一个 config.yaml
文件来保存您的工作流信息。配置示例如下:
- flow_id: 'flow id' # required
name: 'flow name' # optional, if not set, obtain the name from the cloud.
description: 'flow description' # optional, if not set, obtain the description from the cloud.
api_key: 'API Key:API Secret' # required

发布工作流
注意:如果您发现无法选择应用程序,可以前往 https://www.xfyun.cn 申请。
要添加持久客户端,请将以下内容添加到您的 claude_desktop_config.json
或 mcp.json
文件中:
{
"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"
}
}
}
}

配置示例:
{
"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"
}
}
}
}
