Overview
server-run-commands is an MCP (Model Context Protocol) server that enables users to execute commands on their local operating system through an interface.
To use server-run-commands, clone the repository, install the necessary dependencies, and configure it to run commands with supported applications such as Claude Desktop for integration.
- Easily run OS commands from a remote interface - Capture command outputs including process exit codes and stdout - Integration with applications using MCP standards
- Execute local scripts remotely via an interface.
- Automate operating system tasks programmatically.
- Integrate command running capabilities in other software applications.
Add to your AI client
Use these steps to connect server-run-commands in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"server-run-commands-anton-107": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"server-run-commands-anton-107": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"server-run-commands-anton-107": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"server-run-commands-anton-107": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"server-run-commands-anton-107": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"server-run-commands-anton-107": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-run-commands-anton-107"
]
}
}
}FAQ
What is required to install server-run-commands?
You will need Git and Node.js installed on your machine to clone the repository and run the installation commands.
Can server-run-commands run any command on the OS?
Yes, as long as the command is valid and properly formatted, it can be executed on the local OS.
Is there any configuration needed for other applications to use this server?
Yes, you will need to configure the application's settings to include the server path and arguments as per the provided documentation.