iflytek_ifly_workflow_mcp_server

iflytek_ifly_workflow_mcp_server

by iflytek
A simple MCP server implementation enabling integration with iFlytek workflows through MCP tools.

iFlytek Workflow MCP Server

iFlytek Logo

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.

Overview

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.

Features

Functional Overview

  • Workflow Structure: Composed of multiple nodes, supporting 14 types of nodes (basic, tool, logic, and transformation types).
  • Core Components: Includes a Start Node (user input) and an End Node (output result).
  • Execution Mode: Automatically executes workflows based on predefined sequences and rules.

Core Capabilities

Robust Node Support

  • 14 types of workflow nodes for diverse business requirements.
  • Supports complex variable I/O for flexible data transmission.

Advanced Orchestration Modes

  • Sequential Execution: Tasks execute in order.
  • Parallel Execution: Multiple tasks run simultaneously.
  • Loop Execution: Handles repetitive tasks iteratively.
  • Nested Execution: Embeds sub-workflows for reusability.
  • Hook Mechanism: Enables streaming output for real-time processing.

Multiple Development Paradigms

  • Single-turn, single-branch: Linear execution of simple tasks.
  • Single-turn, multi-branch: Supports branching logic.
  • Single-turn loop: Manages looped tasks.
  • Multi-turn interaction: Supports context memory for dynamic conversations.

Capability Expansion

  • Multi-Model Support: Based on the Model of Models (MoM) hybrid application architecture, allowing flexible model combinations.

Usage with MCP Client

Prepare 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

Get Workflow Authentication Information

  1. Create a bot.
  2. Debug and publish your workflow.
  3. Select "Publish as API" and bind it to an application to retrieve the workflow ID and authentication information.

Manual Installation

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

About

The iFlytek Workflow MCP Server is a lightweight implementation that integrates iFlytek workflows with MCP tools. It is licensed under the MIT License.

Resources

Stats

  • Stars: 14
  • Watchers: 4
  • Forks: 0

Languages

  • Python: 100.0%

Features & Capabilities

Categories
mcp_server model_context_protocol python workflow_integration api_integration iFlytek

Implementation Details

Stats

0 Views
14 GitHub Stars

Repository Info

iflytek Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300