Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claude Code Multi-Process MCP Serverstart a background task to lint all Python files in the project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Code 多进程 MCP 服务器
项目定位
基于 FastMCP 框架的多进程并行执行服务器,为 Claude Code CLI 提供异步任务处理能力。
核心架构
MCP 工具集
工具名 | 类型 | 功能 |
| 同步 | 阻塞执行,返回结果 |
| 异步 | 立即返回 task_id |
| 查询 | 获取状态和结果 |
| 监控 | 列出所有运行中任务 |
| 清理 | 终止进程并删除数据 |
关键技术点
技术领域 | 实现方案 |
进程管理 |
|
僵尸进程防护 |
|
任务持久化 | 文件系统 JSON 存储 + 进程状态混合判断 |
进程存活检测 |
|
输出解析 | 支持 stream-json/json/text 多格式提取 |
任务隔离 | 每任务独立目录 + UUID 标识 |