Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions examples/mcp-browserbase-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ async function runBrowserbaseExample() {
await mcpServer.close();
console.log('MCP server closed successfully');

console.log('Cleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the browserbase example
Expand Down
4 changes: 0 additions & 4 deletions examples/mcp-claude-code-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ async function runClaudeCodeExample() {
console.log(`Visit the research results at: http://${webserverUrl}/index.html`);
console.log(`The page contains the paper summary and author information`);

// Cleanup
console.log('\nCleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the Claude Code example
Expand Down
4 changes: 0 additions & 4 deletions examples/mcp-client-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ async function run() {

console.log(`\nTotal tools available: ${tools.tools.length}`);

// Cleanup
console.log('\nCleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the example
Expand Down
4 changes: 0 additions & 4 deletions examples/mcp-custom-server-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ async function run() {
});
console.log('Directory contents:', result.content);

// Cleanup
console.log('\nCleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the example
Expand Down
4 changes: 0 additions & 4 deletions examples/mcp-custom-template-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ async function runSandboxExample() {

console.log(`\nTotal tools available: ${tools.tools.length}`);

// Cleanup
console.log('\nCleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

runSandboxExample().catch((error) => {
Expand Down
4 changes: 0 additions & 4 deletions examples/mcp-groq-exa-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ async function runGroqExaExample() {
console.log('\nResearch Results:');
console.log(response.output_text);

// Cleanup
console.log('\nCleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the Groq Exa example
Expand Down
3 changes: 0 additions & 3 deletions examples/mcp-research-agent-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ async function runResearchAgent() {
await mcpServer.close();
console.log('MCP server closed successfully');

console.log('Cleaning up sandbox...');
await sandbox.kill();
console.log('Sandbox closed successfully');
}

// Run the research agent
Expand Down