We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/standardbeagle/brummer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manager_windows.go•469 B
//go:build windows
package process
// killWindowsDevProcessesImpl is the Windows implementation
func (m *Manager) killWindowsDevProcessesImpl() {
// Common Node.js and development server process names on Windows
processes := []string{
"node.exe",
"npm.cmd",
"yarn.cmd",
"pnpm.cmd",
"bun.exe",
"webpack",
"vite",
"next",
"react-scripts",
"vue-cli-service",
"ng",
"nuxt",
}
for _, proc := range processes {
killProcessesByName(proc)
}
}