AgentStack
MCP verified MIT Self-run

Codemogger

mcp-glommer-codemogger · by glommer

Codemogger is a code indexing library and MCP server for AI coding agents

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add mcp-glommer-codemogger

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-glommer-codemogger)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Codemogger? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

codemogger

Code indexing library for AI coding agents. Parses source code with tree-sitter, chunks it into semantic units (functions, structs, classes, impl blocks), embeds them locally, and stores everything in a single SQLite file with vector + full-text search.

No Docker, no server, no API keys. One .db file per codebase.

Why

Coding agents need to understand codebases. They need to find where things are defined, discover how concepts are implemented across files, and navigate unfamiliar code quickly. This requires both keyword search (precise identifier lookup) and semantic search (natural language queries when you don't know the exact names).

As AI coding tools become more composable - agents calling agents, MCP servers plugging into different hosts - this capability needs to exist as a library that runs locally. No external servers, no API keys, no Docker containers. Just a function call that returns results.

codemogger is that library. Embedded SQLite (via Turso) with FTS + vector search in a single .db file.

Install

npm install -g codemogger

Or use npx to run without installing.

Quick start

# Index a project
codemogger index ./my-project

# Search
codemogger search "authentication middleware"

Add to your coding agent's MCP config (Claude Code, OpenCode, etc.):

{
  "mcpServers": {
    "codemogger": {
      "command": "npx",
      "args": ["-y", "codemogger", "mcp"]
    }
  }
}

The MCP server exposes three tools:

  • codemogger_search - semantic and keyword search over indexed code
  • codemogger_index - index a codebase for the first time
  • codemogger_reindex - update the index after modifying files

Add the local db to .gitignore:

# codemogger db
.codemogger/

SDK

codemogger is also usable as a library. The SDK has no model dependency - you provide your own embedding function:

import { CodeIndex } from "codemogger"
import { pipeline } from "@huggingface/transformers"

// Load embedding model (runs locally, no API keys)
const extractor = await pipeline("feature-extraction", "Xenova/all-MiniLM-L6-v2", { dtype: "q8" })

const embedder = async (texts: string[]): Promise => {
  const output = await extractor(texts, { pooling: "mean", normalize: true })
  return output.tolist() as number[][]
}

const db = new CodeIndex({
  dbPath: "./my-project.db",
  embedder,
  embeddingModel: "all-MiniLM-L6-v2",
})

await db.index("/path/to/project")

// Semantic: "what does this codebase do?"
const results = await db.search("authentication middleware", { mode: "semantic" })

// Keyword: precise identifier lookup
const results = await db.search("BTreeCursor", { mode: "keyword" })

await db.close()

The MCP server and CLI ship with all-MiniLM-L6-v2 by default.

CLI

# Install globally
npm install -g codemogger

# Index a directory
codemogger index ./my-project

# Search
codemogger search "authentication middleware"

# List indexed codebases
codemogger list

How it works

  1. Scan - walk directory, respect .gitignore, detect language from extension
  2. Chunk - parse each file with tree-sitter (WASM), extract top-level definitions (functions, structs, classes, impl blocks). Items >150 lines are split into sub-items.
  3. Embed - encode each chunk with the provided embedding model (runs locally, no API)
  4. Store - write chunks + embeddings to SQLite with FTS index
  5. Search - vector cosine similarity (semantic) or FTS with weighted fields (keyword)

Incremental: only changed files (by SHA-256 hash) are re-processed on subsequent runs.

Languages

Rust, C, C++, Go, Python, Zig, Java, Scala, JavaScript, TypeScript, TSX, PHP, Ruby.

Benchmarks

Benchmarked on 4 real-world codebases on an Apple M2 (8GB). Each project uses its own isolated database. Embeddings use vector8 (int8 quantized, 395 bytes/chunk vs 1,536 for float32). Embedding model: all-MiniLM-L6-v2 (q8 quantized, local CPU). Search times are p50 over 3 runs.

Performance

| Project | Language | Files | Semantic | Keyword | ripgrep | |---------|----------|------:|---------:|--------:|--------:| | Turso | Rust | 748 | 35 ms | 1 ms | 25 ms | | Bun | Zig | 9,255 | 137 ms | 2 ms | 166 ms | | TypeScript | TypeScript | 39,298 | 242 ms | 4 ms | 1,500 ms | | Kubernetes | Go | 16,668 | 617 ms | 12 ms | 731 ms |

Keyword search is 25x-370x faster than ripgrep and returns precise definitions instead of thousands of file matches.

Indexing is a one-time cost dominated by embedding (~97% of time). Subsequent runs only re-embed changed files.

Search quality: semantic search vs ripgrep

The real advantage isn't speed - it's finding the right code when you don't know the exact keywords.

"write-ahead log replication and synchronization" (Turso)

| codemogger (top 5) | ripgrep | |---|---| | impl LogicalLog - core/mvcc/persistentstorage/logicallog.rs | 3 files matched | | enum CommitState - core/mvcc/database/mod.rs | (keyword: "write-ahead") | | function new - core/mvcc/database/checkpointstatemachine.rs | | | struct LogicalLog - core/mvcc/persistentstorage/logicallog.rs | | | function checkpoint_shutdown - core/storage/pager.rs | |

"SQL statement parsing and compilation" (Turso)

| codemogger (top 5) | ripgrep | |---|---| | function parse_and_build - core/translate/logical.rs | 139 files matched | | macro compile_sql - core/incremental/compiler.rs | (keyword: "statement") | | function parse_from_clause_opt - parser/src/parser.rs | | | function parse_from_clause_table - core/translate/planner.rs | | | function parse_table - core/translate/planner.rs | |

"HTTP request parsing and response writing" (Bun)

| codemogger (top 5) | ripgrep | |---|---| | function consumeRequestLine - packages/bun-uws/src/HttpParser.h | 0 files matched | | declaration ConsumeRequestLineResult - packages/bun-uws/src/HttpParser.h | (keyword: "HTTP") | | function llhttp__after_headers_complete - src/bun.js/bindings/node/http/llhttp/http.c | | | function llhttp_message_needs_eof - src/bun.js/bindings/node/http/llhttp/http.c | | | function shortRead - packages/bun-uws/src/HttpParser.h | |

"scheduling pods to nodes based on resource requirements" (Kubernetes)

| codemogger (top 5) | ripgrep | |---|---| | type Scheduling - staging/src/k8s.io/api/node/v1beta1/types.go | 429 files matched | | type Scheduling - staging/src/k8s.io/api/node/v1/types.go | (keyword: "scheduling") | | type SchedulingApplyConfiguration - staging/.../node/v1/scheduling.go | | | function runPodAndGetNodeName - test/e2e/scheduling/predicates.go | | | type createPodsOp - test/integration/schedulerperf/schedulerperf.go | |

"container health check probes and restart policy" (Kubernetes)

| codemogger (top 5) | ripgrep | |---|---| | type ContainerFailures - test/utils/conditions.go | 1,652 files matched | | variable _ - test/e2e/common/node/containerprobe.go | (keyword: "container") | | function checkContainerStateTransition - pkg/kubelet/status/statusmanager.go | | | function TestDoProbe_TerminatedContainerWithRestartPolicyNever - pkg/kubelet/prober/workertest.go | | | function proveHealthCheckNodePortDeallocated - pkg/registry/core/service/storage/storagetest.go | |

ripgrep matches thousands of files on common keywords. codemogger returns the 5 most relevant definitions.

Dependencies note

@tursodatabase/database is currently pinned to a pre-release version (0.5.0-pre.14). There is no stable 0.5.x release yet; once one is published this should be updated. The pre-release is stable enough for development use but may have breaking changes before it reaches a final release.

Architecture

  • Bun/TypeScript runtime
  • tree-sitter (WASM) for AST-aware chunking - 13 language grammars
  • all-MiniLM-L6-v2 for local embeddings (384 dimensions, q8 quantized)
  • Turso for storage - embedded SQLite with FTS + vector search extensions
  • Single DB file stores multiple codebases with per-codebase FTS tables and global vector search

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.