A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Example of using MCP Gateway with E2B sandboxes
Examples demonstrating E2B sandboxes with the (beta) MCP Gateway.
import Sandbox from 'e2b'
const sandbox = await Sandbox.betaCreate({
mcp: {
duckduckgo: {},
arxiv: {
// MCP servers + properties are fully typed!
storagePath: '/'
},
},
});
const mcpUrl = sandbox.betaGetMcpUrl();
bun install
export E2B_API_KEY="e2b_" # Get from e2b.dev or ~/.e2b/config.json
There are three examples in /examples
basic.tsCreates an E2B sandbox with arXiv and DuckDuckGo MCP servers and outputs the MCP URL.
bun examples/basic.ts
claude-code.tsUses Claude Code CLI to research a paper, find author info, and create a web page hosted in the sandbox.
export ANTHROPIC_API_KEY="your-key"
bun examples/claude-code.ts
mcp-client.tsConnects to MCP servers using the SDK client and lists available tools.
bun examples/mcp-client.ts
research-agent.tsOpenAI agent that researches papers on arXiv and searches for authors on DuckDuckGo.
export OPENAI_API_KEY="your-key"
bun examples/research-agent.ts
The beta is also released for the Python SDK:
pip install e2b==2.3.3
from e2b import AsyncSandbox
import asyncio
async def main():
sandbox = await AsyncSandbox.beta_create(
mcp={
"duckduckgo": {},
"arxiv": {
"storagePath": "/",
},
},
)
mcp_url = sandbox.beta_get_mcp_url()
if __name__ == "__main__":
asyncio.run(main())
MCP server integration for DaVinci Resolve Studio
mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnos
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots