Mcp Server
@e2b/mcp-server
A Model Context Protocol server
0 downloads
v0.2.3
Capabilities
tools
Installation
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @e2b/mcp-serverDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @e2b/mcp-serverManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}About
# E2B MCP Server (JavaScript)
A Model Context Protocol server for running code in a secure sandbox by [E2B](https://e2b.dev).
## Development
Install dependencies:
```
pnpm install
```
Build the server:
```
pnpm build
```
For development with auto-rebuild:
```
pnpm watch
```
## Installation
To use with Claude Desktop, add the server config:
On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"e2b-server": {
"command": "npx",
"args": ["-y", "@e2b/mcp-server"],
"env": { "E2B_API_KEY": "${e2bApiKey}" }
}
}
}
```
### Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:
```
pnpm inspector
```
The Inspector will provide a URL to access debugging tools in your browser.
Reviews
No reviews yet. Be the first to review this package!
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @e2b/mcp-serverDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @e2b/mcp-serverManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@e2b/mcp-server"
]
}
}
}Compatible With
Claude CodeCursorWindsurfContinue.dev
Details
- Version
- 0.2.3
- License
- Unknown
- Category
- memory
- MCP Version
- 1.0
- Published
- 12/17/2024
- Updated
- 2/17/2026