New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

contextpull

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contextpull

Pull, don't push. Store-native reader and MCP server for ContextPull stores (SQLite + FTS5). No Python at query time.

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

contextpull (Node)

Store-native TypeScript reader and MCP server for ContextPull stores. Opens the same SQLite file the Python reference writes; no Python at query time. Correctness is defined by the shared conformance suite.

uvx contextpull ingest ./docs                    # build the store (Python reference; ingest is not ported)
npx contextpull serve ./docs/.contextpull/store.sqlite
npx contextpull search "refund window" --in policy-2025.md
import { Store } from "contextpull";
const store = Store.open(".contextpull/store.sqlite");
const hits = store.search("refund window", ["policy-2024.md", "policy-2025.md"]).hits;
const section = store.read(hits[0].id);

Claude Code: claude mcp add contextpull -- npx contextpull serve /path/store.sqlite.

Install: npm install contextpull (or npx contextpull …). Develop: npm install && npm run build && npm run conformance.

FAQs

Package last updated on 14 Sep 2026

Related posts