by fhhyyp
可扩展的节点流编辑器与工作流引擎,内置 MCP,支持 AI 自动生成节点与流程。An extensible node-flow editor and workflow engine with built-in MCP, enabling AI-powered generation of nodes and workflows.
# Add to your Claude Code skills
git clone https://github.com/fhhyyp/serein-flowGuides for using mcp servers skills like serein-flow.
Last scanned: 9/1/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-09-01T09:11:48.613Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}serein-flow is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by fhhyyp. 可扩展的节点流编辑器与工作流引擎,内置 MCP,支持 AI 自动生成节点与流程。An extensible node-flow editor and workflow engine with built-in MCP, enabling AI-powered generation of nodes and workflows. It has 183 GitHub stars.
Yes. serein-flow passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/fhhyyp/serein-flow" and add it to your Claude Code skills directory (see the Installation section above).
serein-flow is primarily written in C#. It is open-source under fhhyyp on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh serein-flow against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
SereinFlow is a web-first workflow orchestration and execution system. It combines a visual web console, an ASP.NET Core API, isolated Worker Runner processes, and an MCP service for AI-tool integration.
SereinFlow is used to create, maintain, and run project workflows. The web console manages projects, flows, versions, runs, and environment settings. The API coordinates persisted data and execution requests, while untrusted scripts and plugins run only in separate Worker Runner processes. The MCP service exposes controlled tools, resources, and prompts so AI clients can work with SereinFlow safely.
| Path | Purpose |
|---|---|
src/SereinFlow.Api |
ASP.NET Core API and the HTTP/stdio MCP host. |
frontend/sereinflow-web |
Vue + Vite web console. |
plugins/sereinflow-ai-toolkit |
Local MCP client and Skill source material. |
docs |
Maintained technical references. |
10.0.100 or a compatible SDK selected by
global.json.24.19.0, as defined in .node-version, and npm
11.6.2.Projects that use SereinLang rely on the pinned source snapshot under
src/ThirdParty/SereinScript. A normal SereinFlow build needs neither a
separate SereinScript checkout nor a path environment variable.
From the repository root, run:
dotnet run --project .\src\SereinFlow.Api\SereinFlow.Api.csproj
By default, the API and HTTP MCP service listen on http://127.0.0.1:8188,
with MCP available at http://127.0.0.1:8188/mcp. The first start initializes
local data under the configured data directory.
Open a second terminal and run:
Set-Location .\frontend\sereinflow-web
npm ci
npm run dev
Open the URL printed by Vite, usually http://localhost:5173. The development
server proxies /api and /hubs to http://127.0.0.1:8188 by default. Set
VITE_API_PROXY_TARGET before starting the frontend when the API uses another
address.
The following workflow configures an HTTP MCP client for a locally running SereinFlow instance. Start both the API and the web console before continuing.
In the web console's home menu, open Environment settings, find MCP
access keys, and select Generate first key. Save the administrator key
shown there. It normally begins with sfk_..., and the complete Secret is
shown only once when it is created or rotated.
In Windows Edit environment variables for your account, add a user variable
named SEREINFLOW_MCP_API_KEY whose value is the complete key you just
generated. Alternatively, run this PowerShell command, replacing the example
value with the real key:
setx SEREINFLOW_MCP_API_KEY "sfk_replace_with_your_complete_secret"
After running setx or saving the system setting, close and reopen terminals
and AI tools. Existing processes do not receive the new variable automatically.
Ask the AI tool you use to create a local Skill from the contents of
plugins/sereinflow-ai-toolkit. Its
.mcp.json defines the local HTTP
MCP endpoint and the SEREINFLOW_MCP_API_KEY credential variable, while
SKILL.md defines
the connection, diagnostics, capability-discovery, and safe-operation rules.
Preserve the following connection contract when creating the Skill. Never put the real key in the repository, a Skill file, or logs:
{
"mcpServers": {
"sereinflow": {
"type": "http",
"url": "http://127.0.0.1:8188/mcp",
"bearer_token_env_var": "SEREINFLOW_MCP_API_KEY"
}
}
}
First confirm that the route is reachable. With the API running, the following
command is expected to print 405. That means the /mcp route is listening;
MCP requests must use POST.
try {
Invoke-WebRequest -Method Get http://127.0.0.1:8188/mcp -ErrorAction Stop
} catch {
[int]$_.Exception.Response.StatusCode
}
Then start a new AI-tool session, connect to the sereinflow MCP server, and
discover tools/list, resources/list, resources/templates/list, and
prompts/list. A successful initialization and returned catalogs confirm that
MCP authentication and the service are working.
401 normally means the endpoint and route are reachable but the key is
missing, invalid, expired, or revoked.127.0.0.1:8188.Local MCP setup is complete once the AI tool can initialize and discover the MCP tools, resources, and prompts.
Codex's default safety policy can block this environment variable from being
passed to Shell and command-line environments it launches. To use the
SereinFlow MCP service in Codex, add the following to
%USERPROFILE%\.codex\config.toml. If this table already exists, add only the
variable line and do not declare the table twice:
[shell_environment_policy.filters]
SEREINFLOW_MCP_API_KEY = "include"
Fully restart Codex and start a new task. This rule allows Codex-launched
Shells to receive the variable; the MCP HTTP client must still use the
bearer_token_env_var configuration shown above to read it.
dotnet restore SereinFlow.sln
dotnet build SereinFlow.sln --no-restore
dotnet test SereinFlow.sln --no-build
Set-Location frontend/sereinflow-web
npm ci
npm run build
To verify the full publish layout for an upload library, publish
tests/SereinFlow.TestLibrary. The
command creates artifacts/libraries/SereinFlow.TestLibrary-1.6.1.zip with the
complete publish output and required archive layout:
dotnet publish tests\SereinFlow.TestLibrary\SereinFlow.TestLibrary.csproj -c Release
An MCP key is a credential, not project configuration. Do not commit an
sfk_... key to Git or place it in .env examples, test data, Skill files,
prompts, or logs. Rotate or revoke a key from Environment settings when it
is exposed, lost, or no longer needed.