.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/instavm/coderunner
home/mcp-servers/instavm/coderunner
instavm avatar

coderunner

byinstavm· 2 MCP servers

Stars

878

Forks

40

Category

Debugging

View on GitHub

TL;DR

CodeRunner helps you sandbox your AI agents and its actions inside a sandbox.

How to install coderunner?

instavm/coderunner
$git clone https://github.com/instavm/coderunner

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install coderunner by running `git clone https://github.com/instavm/coderunner`, then use it for the current task and follow its documentation at https://github.com/instavm/coderunner.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3[![Start](https://img.shields.io/github/stars/instavm/coderunner?color=yellow&style=flat&label=%E2%AD%90%20stars)](https://github.com/instavm/coderunner/stargazers)
4[![License](http://img.shields.io/:license-Apache%202.0-green.svg?style=flat)](https://github.com/instavm/coderunner/blob/master/LICENSE)
5</div>
6 
7# CodeRunner: A local sandbox for your AI agents
8 
9CodeRunner helps you sandbox your AI agents and its actions inside a sandbox.
10 
11**Key use case:** You can run multiple Claude Code or AI agents in our sandbox without any fear of data loss and exfilteration.
12 
13 
14 
15## Quick Start
16 
17**Prerequisites:** Mac with macOS and Apple Silicon (M1/M2/M3/M4), Python 3.10+
18 
19```bash
20git clone https://github.com/instavm/coderunner.git
21cd coderunner
22chmod +x install.sh
23./install.sh
24```
25 
26### Stop and resume
27 
28Stop the sandbox when you are done:
29 
30```bash
31container stop coderunner
32```
33 
34Resume the same sandbox later, preserving uploads, kernels, and installed packages:
35 
36```bash
37container start coderunner
38```
39 
40To start over with a clean sandbox, delete the container and run the installer again:
41 
42```bash
43container delete coderunner && ./install.sh
44```
45 
46 
47## Run Claude Code inside a Sandbox
48 
49`./install.sh` (if not already done)
50 
51`container exec -it coderunner /bin/bash`
52 
53`root@coderunner:/app# npm install -g @anthropic-ai/claude-code`
54 
55<img width="741" height="410" alt="image" src="https://github.com/user-attachments/assets/620490cb-4e85-4c37-bc57-ab2fa1762c78" />
56 
57## Other Integration Options
58 
59MCP server will be available at: `http://coderunner.local:8222/mcp`
60 
61**Install required packages** (use virtualenv and note the python path):
62```bash
63pip install -r examples/requirements.txt
64```
65 
66#### 1. Claude Desktop Integration
67 
68 
69<details>
70<summary>Configure Claude Desktop to use CodeRunner as an MCP server:</summary>
71 
72![demo1](images/demo.png)
73 
74![demo2](images/demo2.png)
75 
76![demo4](images/demo4.png)
77 
781. **Copy the example configuration:**
79 ```bash
80 cd examples
81 cp claude_desktop/claude_desktop_config.example.json claude_desktop/claude_desktop_config.json
82 ```
83 
842. **Edit the configuration file** and replace the placeholder paths:
85 - Replace `/path/to/your/python` with your actual Python path (e.g., `/usr/bin/python3` or `/opt/homebrew/bin/python3`)
86 - Replace `/path/to/coderunner` with the actual path to your cloned repository
87 
88 Example after editing:
89 ```json
90 {
91 "mcpServers": {
92 "coderunner": {
93 "command": "/opt/homebrew/bin/python3",
94 "args": ["/Users/yourname/coderunner/examples/claude_desktop/mcpproxy.py"]
95 }
96 }
97 }
98 ```
99 
1003. **Update Claude Desktop configuration:**
101 - Open Claude Desktop
102 - Go to Settings → Developer
103 - Add the MCP server configuration
104 - Restart Claude Desktop
105 
1064. **Start using CodeRunner in Claude:**
107 You can now ask Claude to execute code, and it will run safely in the sandbox!
108</details>
109 
110#### 2. Claude Code CLI
111 
112<details>
113<summary>Use CodeRunner with Claude Code CLI for terminal-based AI assistance:</summary>
114 
115**Quick Start:**
116 
117```bash
118# 1. Install and start CodeRunner (one-time setup)
119git clone https://github.com/instavm/coderunner.git
120cd coderunner
121sudo ./install.sh
122 
123# 2. Install the Claude Code plugin
124claude plugin marketplace add https://github.com/instavm/coderunner-plugin
125claude plugin install instavm-coderunner
126 
127# 3. Reconnect to MCP servers
128/mcp
129```
130 
131**Installation Steps:**
132 
1331. Navigate to Plugin Marketplace:
134 
135 ![Navigate to Plugin Marketplace](images/gotoplugin.png)
136 
1372. Add the InstaVM repository:
138 
139 ![Add InstaVM Repository](images/addrepo.png)
140 
1413. Execute Python code with Claude Code:
142 
143 ![Execute Python Code](images/runcode.png)
144 
145That's it! Claude Code now has access to all CodeRunner tools:
146- **execute_python_code** - Run Python code in persistent Jupyter kernel
147- **navigate_and_get_all_visible_text** - Web scraping with Playwright
148- **list_skills** - List available skills (docx, xlsx, pptx, pdf, image processing, etc.)
149- **get_

Preview

instavm/coderunnerinstavm/coderunner

[![Start](https://img.shields.io/github/stars/instavm/coderunner?color=yellow&style=flat&label=%E2%AD%90%20stars)](https://github.com/instavm/coderunner/stargaz

[![License](http://img.shields.io/:license-Apache%202.0-green.svg?style=flat)](https://github.com/instavm/coderunner/blob/master/LICENSE)

Repoinstavm/coderunner
TypeMCP Servers
CategoryDebugging
UpdatedMay 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPanthropicapple

Related

6 picks
Type
  1. chromedevtools avatarchrome-devtools-mcpMCP server for Chrome DevToolsMCP ServersJul 202611M48k
  2. ooo0ooo avatarlean-lsp-mcpLean Theorem Prover MCPMCP ServersJul 20261.9M460
  3. wonderwhy-er avatardesktopcommandermcpMCP server for terminal commands, file operations, and process managementMCP ServersJul 2026346k8.9k
  4. avivsinai avatarlangfuse-mcpLangfuse MCP server for accessing and analyzing telemetry data via natural languageMCP ServersJun 202611k101
  5. faraazahmad avatarmcp_debugPostman for your MCP server with a Claude chat that calls your toolsMCP ServersJun 20258.9k14
  6. p3gleg avatartauri-plugin-mcpAllows AI agents (e.g., Cursor, Claude Code) to debug within Tauri apps via screenshot capture, window management, DOM access, and simulated user inputs.MCP ServersJul 20266.2k104