vscode-code-runner-mcp-server

formulahendry/vscode-code-runner-mcp-server

3.1

If you are the rightful owner of vscode-code-runner-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Code Runner MCP Server is a tool for running code snippets in VS Code with zero setup.

The Code Runner MCP Server is designed to facilitate the execution of code snippets directly within Visual Studio Code (VS Code) without requiring any additional setup. This server leverages the Model Context Protocol (MCP) to seamlessly integrate with VS Code, allowing developers to run and test code snippets efficiently. It is particularly useful for developers who need to quickly test small pieces of code without setting up a full development environment. The server supports various programming languages and provides immediate feedback by displaying the results within the editor. This tool is ideal for both learning and development purposes, as it simplifies the process of code execution and result visualization.

Features

  • Zero setup required for running code snippets in VS Code.
  • Supports multiple programming languages.
  • Displays results directly within the VS Code editor.
  • Facilitates quick testing and debugging of code.
  • Integrates seamlessly with VS Code using MCP.

Usages

usage with VS Code

{
  "mcp": {
    "servers": {
      "code-runner": {
        "command": "npx",
        "args": [
          "-y",
          "mcp-server-code-runner"
        ]
      }
    }
  }
}