MCP 创建服务器
动态 MCP 服务器管理服务,用于动态创建、运行和管理模型上下文协议 (MCP) 服务器。此服务本身充当 MCP 服务器,并以子进程的形式启动/管理其他 MCP 服务器,从而实现灵活的 MCP 生态系统。
主要特点
MCP 服务器代码的动态创建和执行
仅支持 TypeScript(计划在未来版本中支持 JavaScript 和 Python)
在子 MCP 服务器上执行工具
服务器代码更新并重启
删除不必要的服务器
安装
注意:Docker 是运行此服务的推荐方式
Docker 安装(推荐)
手动安装(仅限 TypeScript)
与 Claude Desktop 集成
将以下内容添加到您的 Claude Desktop 配置文件( claude_desktop_config.json )中:
可用工具
工具名称 | 描述 | 输入参数 | 输出 |
从模板创建服务器 | 从模板创建 MCP 服务器 | 语言:字符串 | { 服务器 ID:字符串,消息:字符串 } |
执行工具 | 在服务器上执行工具 | serverId: stringtoolName: stringargs: 对象 | 工具执行结果 |
获取服务器工具 | 获取服务器工具列表 | 服务器ID:字符串 | { 工具:工具定义[] } |
删除服务器 | 删除服务器 | 服务器ID:字符串 | { 成功:布尔值,消息:字符串 } |
列表服务器 | 获取正在运行的服务器列表 | 没有任何 | { 服务器:字符串[] } |
使用示例
创建新服务器
执行工具
技术规格
Node.js 18 或更高版本
TypeScript(必需)
依赖项:
@modelcontextprotocol/sdk:MCP 客户端/服务器实现
child_process(Node.js内置):子进程管理
fs/promises(Node.js 内置):文件操作
uuid:唯一服务器ID生成
安全注意事项
**代码执行限制:**当服务执行任意代码时,请考虑沙盒
**资源限制:**设置内存、CPU 使用率、文件数量等的限制。
**进程监控:**监控并强制终止僵尸进程或失控进程
**路径验证:**正确验证文件路径以防止目录遍历攻击
执照
麻省理工学院
Related MCP Servers
- Asecurity-licenseAqualityA beginner-friendly Model Context Protocol (MCP) server that helps users understand MCP concepts, provides interactive examples, and lists available MCP servers. This server is designed to be a helpful companion for developers working with MCP. Also comes with a huge list of servers you can install.Last updated -31663Apache 2.0
- -security-license-qualityMCP Server simplifies the implementation of the Model Context Protocol by providing a user-friendly API to create custom tools and manage server workflows efficiently.Last updated -34MIT License
- -security-license-qualityMCP Server provides a simpler API to interact with the Model Context Protocol by allowing users to define custom tools and services to streamline workflows and processes.Last updated -63MIT License
- Asecurity-licenseAqualityA specialized server that helps users create new Model Context Protocol (MCP) servers by providing tools and templates for scaffolding projects with various capabilities.Last updated -8885