Procedure verification for AR/XR with memory, visual sessions, and DPO trajectory export.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
alpha software. interfaces may change. file issues at github.com/dumbspacecookie/openeye.
every AR headset maker β HoloLens, Snap Spectacles, Apple, Android β ships a device that can see. none of them ship a brain. every developer building on these platforms has to figure out the intelligence layer themselves, from scratch, every time, for every device. the work doesn't compound. what one team learns on HoloLens doesn't help the team building on WebXR. every deployment is a silo.
OpenEye is the shared brain.
a thin piece of software sits on the device, captures what the camera sees, and turns it into a natural-language description of the scene. that description goes to OpenEye. OpenEye runs an AI agent with tools for verifying procedure steps, recalling prior sessions, and writing down what it learns. each session becomes structured memory the agent can search later, and an exportable training trajectory you can fine-tune on.
OpenEye doesn't ship a vision model β you bring your own. drop in Claude vision, GPT-4o, Gemini, Groq Llama vision, or a local Ollama model with moondream/llava. a working reference adapter for both cloud and local is in examples/vision-adapter/.
the Python sidecar (FastAPI + SQLite) handles state and auto-spawns when you create an agent β you don't have to start it yourself.
prefer to hack on it locally? clone instead:
no API key for the agent? run it locally with Ollama:
| capability | OpenEye |
|---|---|
| agent runtime + tool calling | yes |
| persistent session memory (FTS5) | yes |
| visual frame logging + search | yes |
| step verification with pass/fail/uncertain outcomes | yes |
| training data export (ShareGPT JSONL) | yes |
| DPO preference pair export | yes |
| HuggingFace dataset push | yes |
| MCP server (Claude Desktop, Cursor) | yes |
| reference vision adapters (Claude + Ollama) | yes |
| vision model | no β you bring this |
| hosted cloud | no β bring your own ingest endpoint (contract) |
what makes this useful is the loop: a session generates pass/fail outcomes against real procedure steps, those outcomes become a reward signal, and the full conversation gets packaged as a ShareGPT trajectory ready for DPO training in TRL, LLaMA-Factory, or Axolotl. you supply the fine-tuning pipeline β OpenEye supplies the data.
when a frame arrives from a device, your vision adapter describes it in plain language. that description goes to the AI agent. the agent has access to a set of tools:
| tool | what it does |
|---|---|
search_memory | FTS5 search across all past agent sessions |
search_frames | FTS5 search across all past frame descriptions |
recall_skill | retrieve relevant procedural skills for the current task |
write_skill | persist a new skill doc after completing a complex task |
start_visual_session | begin a tracked AR/XR session |
end_visual_session | close a visual session |
log_frame | record a frame's scene description |
verify_step | record a step result β pass / fail / uncertain |
step verifications become the reward signal: reward = (passes + 0.5 Γ uncertain) / total. at the end of a session the whole conversation gets packaged into a ShareGPT trajectory, ready for any DPO-compatible trainer.
important: the reward signal reflects the agent's own judgments against scene descriptions, not external ground truth. to use this as real RL data, you should periodically validate trajectories against a human-labeled subset, or use it as supervised data rather than treating it as objective truth. fine-tuning on this raw signal alone risks training the model to be confidently wrong.
lead use cases (production-ready):
manufacturing & assembly β bolt installation verification, equipment pre-operation checks, assembly sequence compliance, visual QC at line stations. android tablet or AR overlay over the work area. low regulatory burden, B2B procurement appetite.
training & onboarding β any procedure where a trainee needs a second set of eyes that remembers everything it's ever seen. apprentice mechanics, new line operators, lab technicians. mistakes during training don't cost much, which makes this the safest first deployment.
field service & inspection β lockout/tagout compliance, PPE verification, pre-job safety checklists, equipment inspection. technicians already carry phones. a sample skill file for LOTO ships in skills/field-service/.
not yet recommended:
medical / surgical β the technical pieces work, but anything influencing surgical decisions is subject to FDA 510(k)/De Novo review. the example skills in skills/medical/ are illustrative starting points written by an engineer, not validated clinical protocols. don't use them as compliance baselines without independent medical and regulatory review.
use OpenEye's tools from Claude Desktop, Cursor, Windsurf, or any MCP-compatible client:
all 8 tools are available immediately.
swap with one line, no other code changes:
| provider | env var |
|---|---|
| Anthropic (Claude Opus, Sonnet, Haiku) | ANTHROPIC_API_KEY |
| Groq (Llama 3.3 β fastest, free tier) | GROQ_API_KEY |
| Ollama (local, no key, no cost) | just ollama pull llama3.3 |
| OpenAI, Google, Mistral, Bedrock, OpenRouter | see src/models.ts |
| Any OpenAI-compatible endpoint | pass baseUrl + apiKey to customModel() |
raw frame pixels never leave the device only if your vision adapter runs on-device. the Ollama adapter in examples/vision-adapter/ keeps pixels local; the Claude/OpenAI/Gemini cloud adapters do not. pick the right one for your deployment.
what OpenEye itself stores is the natural-language description of what your vision adapter saw β not the image. opt-in cloud sync is off by default and configurable per data type. every record is scoped to a tenant ID so a single deployment can serve multiple organisations with complete data isolation between them.
opting into cloud sync? OpenEye doesn't run a hosted backend β you operate the receiving endpoint. see docs/cloud-sync.md for the HTTP contract, retry semantics, idempotency requirements, and row schemas.
OpenEye is built by Context. To make procedure-verification models better over time, OpenEye can ship opted-in trajectory data β completed sessions with their reward signals β to Context for training. This is off by default. Nothing leaves your machine until you set:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/openeye)<a href="https://allmcps.com/mcp/openeye"><img src="https://allmcps.com/api/badge/openeye?style=directory" alt="Openeye on AllMCPs" /></a>