hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Integrations
Provides containerized deployment of MCP servers through Docker, enabling isolated execution environments for dynamically created servers.
Leverages Node.js runtime for executing MCP servers, with specific requirements for Node.js 18 or higher to support the server functionality.
Offers template-based creation of Python MCP servers, enabling development and execution of Python-based Model Context Protocol implementations.
MCP サーバーの作成
モデルコンテキストプロトコル(MCP)サーバーを動的に作成、実行、管理する動的MCPサーバー管理サービス。このサービス自体がMCPサーバーとして機能し、他のMCPサーバーを子プロセスとして起動・管理することで、柔軟なMCPエコシステムを実現します。
主な特徴
- MCP サーバーコードの動的な作成と実行
- TypeScript のみのサポート (JavaScript と Python のサポートは将来のリリースで予定されています)
- 子 MCP サーバーでのツール実行
- サーバーコードの更新と再起動
- 不要なサーバーの削除
インストール
注: このサービスを実行するには Docker が推奨されます
Docker のインストール (推奨)
手動インストール(TypeScriptのみ)
Claude Desktopとの統合
Claude Desktop 構成ファイル ( claude_desktop_config.json
) に次のコードを追加します。
利用可能なツール
ツール名 | 説明 | 入力パラメータ | 出力 |
---|---|---|---|
テンプレートからサーバーを作成する | テンプレートからMCPサーバーを作成する | 言語: 文字列 | { サーバー ID: 文字列、メッセージ: 文字列 } |
実行ツール | サーバー上でツールを実行する | サーバーID: stringtoolName: stringargs: オブジェクト | ツール実行結果 |
サーバーツールを取得する | サーバーツールのリストを取得する | サーバーID: 文字列 | { ツール: ツール定義[] } |
サーバーの削除 | サーバーを削除 | サーバーID: 文字列 | { 成功: ブール値、メッセージ: 文字列 } |
リストサーバー | 実行中のサーバーのリストを取得する | なし | { サーバー: 文字列[] } |
使用例
新しいサーバーの作成
ツールの実行
技術仕様
- Node.js 18以上
- TypeScript(必須)
- 依存関係:
- @modelcontextprotocol/sdk: MCP クライアント/サーバー実装
- child_process (Node.js 組み込み): 子プロセスの管理
- fs/promises(Node.js組み込み): ファイル操作
- uuid: 一意のサーバーIDの生成
セキュリティに関する考慮事項
- **コード実行の制限:**サービスが任意のコードを実行するため、サンドボックス化を検討してください
- **リソース制限:**メモリ、CPU 使用率、ファイル数などの制限を設定します。
- **プロセス監視:**ゾンビプロセスや暴走プロセスを監視し、強制終了する
- **パス検証:**ディレクトリトラバーサル攻撃を防ぐためにファイルパスを適切に検証します
ライセンス
マサチューセッツ工科大学
You must be authenticated.
モデル コンテキスト プロトコル (MCP) サーバーを作成および管理する動的サービス。ユーザーは複数の MCP サーバーを子プロセスとして生成、カスタマイズ、制御できます。
- Key Features
- Installation
- Integration with Claude Desktop
- Available Tools
- Usage Examples
- Technical Specifications
- Security Considerations
- License