OODA loop MCP server with filesystem, CLI, and automation tools
{
"mcpServers": {
"ooda-computer": {
"args": [
"mnehmos.ooda.mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive MCP (Model Context Protocol) server that provides full computer control capabilities to Claude. Implements the OODA loop (Observe-Orient-Decide-Act) pattern for autonomous computer interaction.
Is it safe?
No known CVEs for mnehmos.ooda.mcp.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 88 days ago. 9 stars. 7 weekly downloads.
Will it work with my client?
Transport: stdio, sse. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
25 tools. ~700 tokens (0.3% of 200K). Consider loading selectively.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mnehmos.ooda.mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Windows`%APPDATA%\Claude\claude_desktop_config.json`
macOS`~/Library/Application Support/Claude/claude_desktop_config.json`
screenshotCapture screen or region (returns base64 or saves to file)
get_screen_infoGet display/monitor information
wait_for_screen_changeDetect when screen content changes
list_windowsSee all open applications
get_active_windowKnow current focus
clipboard_readCheck clipboard contents
search_filesUnderstand filesystem state
get_system_infoUnderstand system state
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mnehmos.Ooda.Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive MCP (Model Context Protocol) server that provides full computer control capabilities to Claude. Implements the OODA loop (Observe-Orient-Decide-Act) pattern for autonomous computer interaction.
| Category | Tools | Description | |----------|-------|-------------| | CLI & Files | 23 | Shell commands, file read/write/copy/move/delete, search, diff editing | | CRUD Database | 9 | Persistent SQLite key-value store with collections | | Screen (Observe) | 4 | Screenshot, display info, screen change detection | | Input (Act) | 10 | Keyboard typing/shortcuts, mouse move/click/drag/scroll | | Window Management | 11 | List/focus/minimize/maximize/close windows, launch apps | | Clipboard | 4 | Read/write text, HTML, images | | System | 8 | System info, processes, network, notifications | | Browser | 9 | Puppeteer/Playwright automation | | Sessions | 5 | Interactive process sessions (REPLs, SSH) | | Config & Analytics | 7 | Configuration management, usage stats | | Search | 4 | Paginated file search | | Generic Batch | 1 | Universal batch dispatcher for any tool |
Total: 100 tools with batch/parallel execution support for most operations.
This server provides unrestricted system access. Claude will be able to:
Use at your own risk in trusted environments only.
npm install -g mnehmos.ooda.mcp
git clone https://github.com/Mnehmos/mnehmos.ooda.mcp.git
cd mnehmos.ooda.mcp
npm install
npm run build
Add to your Claude Desktop config file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"ooda-computer": {
"command": "npx",
"args": ["mnehmos.ooda.mcp"]
}
}
}
{
"mcpServers": {
"ooda-computer": {
"command": "node",
"args": ["/absolute/path/to/mnehmos.ooda.mcp/dist/index.js"]
}
}
}
The tools are designed around the OODA (Observe-Orient-Decide-Act) loop:
screenshot - Capture screen or region (returns base64 or saves to file)get_screen_info - Get display/monitor informationwait_for_screen_change - Detect when screen content changeslist_windows - See all open applicationsget_active_window - Know current focusclipboard_read - Check clipboard contentsfile_info, search_files - Understand filesystem statelist_processes, get_system_info - Understand system statekeyboard_type, keyboard_shortcut - Type and use hotkeysmouse_click, mouse_move, mouse_drag - Mouse controlfocus_window, launch_application - Window controlclipboard_write - Set clipboard contentnotify - System notificationsThe batch_tools dispatcher can execute ANY tool in batch mode with unified safety limits:
{
"tool": "batch_tools",
"args": {
"operations": [
{ "tool": "read_file", "args": { "path": "src/index.ts" }, "label": "main" },
{ "tool": "file_info", "args": { "path": "package.json" }, "label": "pkg" },
{ "tool": "exec_cli", "args": { "command": "git status --short" }, "label"
... [View full README on GitHub](https://github.com/Mnehmos/mnehmos.ooda.mcp#readme)