Skip to main content
Glama
hussainn7
by hussainn7

mcp-vision

A local, autonomous AI agent that watches your screen, understands the visual layout, and executes native OS commands (clicking, typing) on your behalf. No cloud APIs, no subscriptions, and zero data leaving your machine.

The architecture is built on a simple premise: bridge local vision models with standard OS automation. The pipeline captures a screenshot, processes it through Microsoft's OmniParser to generate a structured map of interactive elements, and feeds that layout to Llama 3.2 Vision via Ollama. The model then decides the next action, executing it through a clean, composable Model Context Protocol (MCP) server.

graph TD
    A[Start Task] --> B[MSS: Capture Screen]
    B --> C[OmniParser: YOLO Element Detection]
    C --> D[Generate Labeled Bounding Box Image]
    D --> E[Ollama: Llama 3.2 Vision Decision]
    E --> F{Model Response}
    F -->|TOOL Call| G[PyAutoGUI: Execute Click/Type/Shortcut]
    G -->|Wait 2s| B
    F -->|DONE| H[Task Finished]

The Execution Process

During the initial execution cycle, the agent captures the current state of your display and runs it through the vision parser. It saves an annotated reference screenshot locally, mapping every detected UI element and interactive bounding box to a specific ID coordinate before passing it to the LLM.

OmniParser Annotated Screen Layout Example: The agent's internal visual map before executing an OS command.


Related MCP server: mcp-test-utils

Current State & Roadmap

Currently, mcp-vision is highly capable of executing simple, repetitive daily OS tasks and navigating static UI layouts autonomously. However, as a v1 release, there is ongoing optimization needed. Future improvements will focus on handling complex, multi-step workflows, managing heavy dynamic scrolling, and reducing inference latency for faster execution cycles.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/hussainn7/mcp-vision'

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