Thanks to visit codestin.com
Credit goes to github.com

Skip to content

johnhenry/vimble-mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published