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.logto 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
Recommend MCP Servers 💡
@hyperdrive-eng/mcp-nodejs-debugger
An MCP server enabling Cursor/Claude Code to debug Node.js at runtime
@mcphub/gateway
A gateway service that bridges stdio-based MCP implementations with HTTP/SSE-based MCP servers
trello-report-mcp
MCP server for generating detailed Trello board reports by quarter or year
ronantakizawa/gis-dataconversion-mcp
An MCP server that enables LLMs to convert between various GIS data formats and perform geospatial operations
MCP-Kali-Server
A lightweight API bridge connecting MCP Clients to execute commands on a Linux terminal for AI-assisted penetration testing and CTF challenges.
@rawr-ai/mcp-filesystem
A Bun-based MCP server for filesystem operations with granular permission controls and enhanced functionality.