tech-memory-mcp AGENTS.md

tech-memory-mcp AGENTS.md is an instructions file for Codex, OpenCode from myx0423/tech-memory-mcp. It costs 2,046 tokens per session, scanned A, original, MIT.

A set of project instructions for tech-memory-mcp, an MCP server that stores and retrieves technical knowledge from earlier conversations. It uses a local SQLite database, text search, and numerical representations of meaning to find related information.

In plain words
What is it for?
Use it when working on the server entry point, database, migrations, search, embeddings, TypeScript types, or MCP tools.
Why use it?
It gives coding agents the project's architecture and technical boundaries when changing how knowledge is saved, searched, or returned.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/myx0423/tech-memory-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/myx0423/tech-memory-mcp

Made for: Codex, OpenCode.

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 tech-memory-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/myx0423/tech-memory-mcp/agents-md.svg)](https://agentmods.dev/instructions/myx0423/tech-memory-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/myx0423/tech-memory-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/myx0423/tech-memory-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,046 This file is loaded in full into every session.
When invoked 2,046 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02046 $0.02046
Opus 5 $0.01023 $0.01023
Sonnet 5 $0.00409 $0.00409
Haiku 4.5 $0.00205 $0.00205

Measured 3d ago against content hash 8ea43459a2c7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tech-memory-mcp AGENTS.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 3d 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.

AGENTS.md · 220 lines

How it starts

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

AGENTS.md

This file provides guidance to AI coding agents when working with this codebase.

Project Overview

tech-memory-mcp is a Model Context Protocol (MCP) Server that provides long-term technical knowledge memory for AI agents. It extracts, stores, and retrieves technical knowledge from conversations using vector embeddings and SQLite.

Core purpose: Enable AI assistants to remember "what was learned" across conversations, not just "what was said".

Tech Stack

  • Runtime: Node.js >= 18.0.0 (uses better-sqlite3)
  • Language: TypeScript (strict mode, ES2022 target, NodeNext modules)
  • Database: SQLite with FTS5 full-text search
  • Embeddings: Transformers.js with Xenova/jina-embeddings-v2-base-zh (768-dim vectors)
  • MCP SDK: @modelcontextprotocol/sdk for MCP protocol implementation
  • Build: TypeScript compiler (tsc), no bundler

Architecture

src/
├── index.ts              # MCP server entry point, registers all tools
├── db.ts                 # Database initialization, migrations, CRUD operations
├── embeddings.ts         # Vector embedding pipeline (Transformers.js)
├── types.ts              # Core type definitions
└── tools/                # MCP tool implementations
    ├── search.ts         # tech_search (hybrid vector + FTS search)
    ├── store.ts          # tech_store (store with semantic dedup)
    ├── auto_extract.ts   # tech_auto_extract (two-phase extraction)
    ├── extract.ts        # tech_extract_template (extraction prompt)
    ├── get.ts            # tech_get (retrieve single entry + graph neighbors)
    ├── link.ts           # tech_link (create knowledge relationships)
    ├── confirm.ts        # tech_confirm (adjust confidence)
    ├── decay.ts          # tech_decay (age-based confidence decay)
    ├── outdated.ts       # tech_outdated (query expired entries)
    └── stats.ts          # tech_stats (database statistics)

Key Patterns

Adding a New MCP Tool

  1. Create src/tools/<tool_name>.ts
  2. Export a register<ToolName>Tool(server: McpServer, db: DatabaseSync) function
  3. Use server.registerTool() with:
    • description: Chinese description explaining what the tool does
    • inputSchema: Zod schema with .strict() to reject unknown fields
    • Handler: async function returning { content: [{ type: "text", text: string }] }
  4. Register the tool in src/index.ts by calling the register function
  5. All logging goes to process.stderr (stdout is reserved for MCP JSON-RPC)

Read the full file on GitHub · 220 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. 3d ago First seen · 220 lines · 2,046 tokens per session scan A 8ea43459a2c7

Subscribe to this mod's changes

tech-memory-mcp AGENTS.md is an instructions file published in the GitHub repository myx0423/tech-memory-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 2,046 tokens to every session, about $0.0102 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.