An MCP server that executes arbitrary commands, enabling flexible control over agent and GUI workflows. It exposes an MCP server interface to run and orchestrate commands in a multimodal environment, supporting a range of agent, vision, browser, and GUI components. The project includes descriptive readme excerpts, badges, and install links to facilitate adoption.
🛠️ Key Features
Runs arbitrary commands via MCP protocol
Integrates with agent, vision, and GUI toolchains
Browser-ready and multimodal operation
Includes installation hooks and VS Code support
🚀 Use Cases
Command-driven agent experimentation
Integrated GUI agent workflows
Vision-guided command execution in browser contexts
⚡ Developer Benefits
Clear MCP-based command execution model
Quick-start install with badges and links
Readme excerpts for onboarding and context
⚠️ Limitations
Specific commands and security constraints are not enumerated in the excerpt
Limited project details in the provided data; refer to repository for full scope
You can also install the Commands MCP server using the VS Code CLI:
bash
# For VS Code
code --add-mcp '{"name":"commands","command":"npx","args":["@agent-infra/mcp-server-commands@latest"]}'
After installation, the Commands MCP server will be available for use with your GitHub Copilot agent in VS Code.
Install in Cursor
Go to Cursor Settings -> MCP -> Add new MCP Server. Name to your liking, use command type with the command npx @agent-infra/mcp-server-commands. You can also verify config or add command like arguments via clicking Edit.
{
"mcpServers": {
"commands": {
"type": "streamable-http", // If there is MCP Client support"url": "http://127.0.0.1:8089/mcp"
}
}
}
In-memory call
If your MCP Client is developed based on JavaScript / TypeScript, you can directly use in-process calls to avoid requiring your users to install the command-line interface to use Commands MCP.