Skip to main content
Glama

VS Code Simple Browser MCP Server

by SaViGnAnO
start.sh•800 B
#!/bin/bash # VS Code Simple Browser MCP Server Startup Script echo "šŸš€ Starting VS Code Simple Browser MCP Server..." # Check if Node.js is installed if ! command -v node &> /dev/null; then echo "āŒ Error: Node.js is not installed. Please install Node.js first." exit 1 fi # Check if build directory exists if [ ! -d "build" ]; then echo "šŸ“¦ Building project..." npm run build fi # Check if build was successful if [ ! -f "build/index.js" ]; then echo "āŒ Error: Build failed. Please run 'npm run build' manually." exit 1 fi echo "āœ… Starting MCP server..." echo "šŸ’” Connect this server to your MCP client using:" echo " Command: node" echo " Args: [\"$(pwd)/build/index.js\"]" echo "" echo "šŸ”Œ Server running on stdio transport..." node build/index.js

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SaViGnAnO/vscode-simple-browser-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server