mnehmos.ooda.mcp: Instructions file for Claude Code

CLAUDE.md

mnehmos.ooda.mcp CLAUDE.md is an instructions file for Claude Code from Mnehmos/mnehmos.ooda.mcp. It costs 1,397 tokens per session, scanned A, original, MIT.

Repository instructions for a TypeScript MCP server, a program that exposes tools for an AI agent, with SQLite storage and many computer-control functions.

In plain words
What is it for?
Working on shell commands, files, windows, screens, keyboard and mouse input, clipboard access, processes, sessions, and SQLite records.
Why use it?
They explain the server’s structure, configuration, audit logging, and development commands so changes fit its existing tool organization.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is Mnehmos/mnehmos.ooda.mcp's own configuration. It tells Claude Code how to work on mnehmos.ooda.mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mnehmos.ooda.mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Mnehmos/mnehmos.ooda.mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Mnehmos/mnehmos.ooda.mcp/master/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/Mnehmos/mnehmos.ooda.mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mnehmos.ooda.mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mnehmos/mnehmos.ooda.mcp/claude-md/github.svg)](https://agentmods.dev/instructions/mnehmos/mnehmos.ooda.mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mnehmos/mnehmos.ooda.mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/mnehmos/mnehmos.ooda.mcp/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mnehmos.ooda.mcp CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/mnehmos/mnehmos.ooda.mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/mnehmos/mnehmos.ooda.mcp/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,397 This file is loaded in full into every session.
When invoked 1,397 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01397 $0.01397
Opus 5 $0.00698 $0.00698
Sonnet 5 $0.00279 $0.00279
Haiku 4.5 $0.00140 $0.00140

Measured 10d ago against content hash ab5729fb1af1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

mnehmos.ooda.mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 195 lines

How it starts

The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.

mnehmos.ooda.mcp - Agent Instructions

Quick Reference

Property Value
Type MCP Server
Tools 100
Version 1.0.0
Entry src/index.ts
Language TypeScript (ESM)
Database SQLite (audit logs, CRUD storage)

Architecture

src/
├── index.ts           # Server entry, tool registration (900+ lines)
├── config.ts          # Configuration loading from ~/.mcp/config.json
├── audit.ts           # Audit trail logging to SQLite
├── constants.ts       # Centralized timeout/limit constants
├── storage/
│   └── db.ts          # SQLite database initialization
├── utils/
│   └── powerShellSession.ts  # Persistent PowerShell for Windows
└── tools/
    ├── cli.ts         # Shell commands, file read/write
    ├── crud.ts        # SQLite key-value CRUD operations
    ├── screen.ts      # Screenshots, display info
    ├── input.ts       # Keyboard/mouse simulation
    ├── window.ts      # Window management, app launching
    ├── clipboard.ts   # Clipboard operations
    ├── system.ts      # Process, environment, network
    ├── filesystem.ts  # File copy/move/delete/search
    ├── sessions.ts    # Interactive process sessions
    ├── analytics.ts   # Usage stats, audit log queries
    ├── configTools.ts # Runtime config get/set
    ├── executeCode.ts # In-memory code execution
    ├── paginatedSearch.ts # Paginated file search
    ├── batchDispatcher.ts # Generic batch_tools handler
    ├── batchTools.ts  # Batch operation wrappers
    ├── diff/          # Intelligent file editing
    │   ├── editBlock.ts
    │   ├── applyDiff.ts
    │   ├── batchEditBlocks.ts
    │   ├── writeFromLine.ts
    │   ├── getDiffPreview.ts
    │   ├── fuzzySearch.ts
    │   ├── diffVisualizer.ts
    │   ├── lineEndings.ts
    │   └── schemas.ts
    └── browser/       # Browser automation
        ├── tools.ts
        ├── browserManager.ts
        ├── interfaces.ts
        └── providers/
            ├── puppeteerProvider.ts
            └── playwrightProvider.ts

Read the full file on GitHub · 195 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 195 lines · 1,397 tokens per session scan A ab5729fb1af1

Subscribe to this mod's changes

mnehmos.ooda.mcp CLAUDE.md is an instructions file published in the GitHub repository Mnehmos/mnehmos.ooda.mcp (8 stars, last pushed 26d ago), licensed MIT. It adds 1,397 tokens to every session, about $0.0070 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.