MCP.so
登录

vimble-mcp

@johnhenry

关于 vimble-mcp

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

基本信息

分类

其他

许可证

MIT license

运行时

node

传输方式

stdio

发布者

johnhenry

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "vimble-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "vimble-mcp"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is vimble-mcp?

vimble-mcp is a Model Context Protocol (MCP) server that executes JavaScript code in a sandboxed environment. It is designed for developers who need to run JavaScript snippets programmatically via the MCP interface.

How to use vimble-mcp?

Install by adding the provided JSON configuration to your MCP client’s settings, using npx -y vimble-mcp as the command. Invoke the execute_javascript tool by passing JavaScript code as a string; optional context can be injected into the execution environment.

Key features of vimble-mcp

  • Execute arbitrary JavaScript code in a sandboxed environment.
  • Time-limited execution with a 10-second default timeout.
  • Debug mode for verbose logging.
  • Supports optional context object injected into the execution environment.
  • Returns output from console.log calls.

Use cases of vimble-mcp

  • Run dynamic JavaScript code from an AI assistant within a sandboxed runtime.
  • Test or manipulate data by injecting custom context variables.
  • Debug JavaScript snippets with verbose logging enabled.

FAQ from vimble-mcp

What code can I execute with vimble-mcp?

You can execute arbitrary JavaScript code. Use console.log to emit output. The execution environment is sandboxed and limited to 10 seconds by default.

Are there any dependencies or runtime requirements?

Node.js and npx are required. The server is installed and run via npx.

Does vimble-mcp support authentication or transport configuration?

The README does not mention authentication or transport options beyond the MCP standard JSON configuration.

Where does executed data live?

Executed code runs in a sandboxed environment; output is returned in the MCP response. No persistence or external storage is described.

What limits does vimble-mcp have?

The server enforces a 10-second execution timeout by default to prevent runaway scripts. There is also a debug mode for verbose logging.

评论

其他 分类下的更多 MCP 服务器