vimble-mcp

vimble-mcpは、JavaScriptコードをサンドボックス環境で実行するためのMCPサーバーです。タイムリミットやデバッグモードを備え、スクリプトの無限ループを防ぎつつ、開発者が安全にコードを実行できる環境を提供します。

GitHubスター

0

ユーザー評価

未評価

フォーク

0

イシュー

0

閲覧数

0

お気に入り

0

README
vimble-mcp

A Model Context Protocol (MCP) server for executing JavaScript code using Vimble.

Features
  • Execute arbitrary JavaScript code in a sandboxed environment.
  • Time-limited execution (10 second default) to prevent runaway scripts.
  • Debug mode for verbose logging.
Installation
Prerequisites
  • node/npx
Installation

Add the following to your MCP JSON configuration

{
  "mcpServers": {
    ...
    "vimble-mcp": {
      "command": "npx",
      "args": [ "-y", "vimble-mcp"]
    }
  }
}
Usage
Tool: execute_javascript
  • Name: execute_javascript
  • Description: Execute JavaScript code. Use console.log to emit output.
  • Input Schema:
{
  code: string;      // JavaScript code to execute
  context?: object;  // Optional context injected into the execution environment
}
  • Response:
{
  content: [{ type: "text", text: string }];
  success: boolean;
  error?: string;
}
License

This project is licensed under the MIT License

作者情報

43

フォロワー

338

リポジトリ

0

Gist

6

貢献数

トップ貢献者

スレッド