GitHub - iflytek/ifly-workflow-mcp-server: This a simple implementation of an MCP server using iFlytek. It enables calling iFlytek workflows through MCP tools. (original) (raw)

The fastest way to build workflows with an AI agent platform!

License | Docs | Homepage

iFlytek Workflow MCP Server

The Model Context Protocol (MCP) is an open protocol designed for effortless integration between LLM applications and external data sources or tools, offering a standardized framework to seamlessly provide LLMs with the context they require.

This a simple implementation of an MCP server using iFlytek. It enables calling iFlytek workflows through MCP tools.

Features

Functional Overview

This system is built on the iFlytek MCP server and enables intelligent workflow scheduling, making it suitable for various business scenarios.

Core Capabilities

Robust Node Support

Advanced Orchestration Modes

Multiple Development Paradigms

Capability Expansion

Usage with MCP client

Prepare config.yaml

Before using the mcp server, you should prepare a config.yaml to save your workflow info. The example config like this:

Get workflow authentication information

  1. Create a bot
  2. Publish a workflow

Note: If you find that you are unable to select an app, you can go to https://www.xfyun.cn to apply.

Manual Installation

To add a persistent client, 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 config:

{ "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" } } } }