Skip to main content

Universal switchboard for the Context-Pipe Protocol (CPP)

Project description

⛓️ Context-Pipe

The Universal Standard for Context Engineering.

CI Tests Python License OSI

context-pipe is a high-performance orchestration layer directly inspired by Unix terminal piping — the same philosophy that made cmd1 | cmd2 | cmd3 the most durable composition primitive in computing. Just as the terminal chains processes through stdin/stdout byte streams, Context-Pipe chains AI tool calls through context streams: each node does one thing, passes its output to the next, and the LLM only sees the final, refined signal.

This is not a metaphor — it is a literal extension. Context-Pipe supports both MCP piping (chaining MCP tool calls through the orchestrator) and terminal piping (any binary, shell command, or script that reads stdin and writes stdout is a valid node). The two modes compose freely in a single pipe definition. And through the mcp-pipe CLI, it extends the terminal itself: the mcp-pipe tool subcommand makes any MCP server — context-mode, serena, GitHub, Firecrawl, or any server registered in pipes.json — directly pipeable from the shell, loading on demand, with no wrapper scripts and no IDE required:

cat error.log | mcp-pipe tool semantic-sift sift_logs | rg "CRITICAL"
curl -s https://example.com | mcp-pipe tool firecrawl scrape | mcp-pipe run semantic-refinery

Today, mcp-pipe run <pipe> already gives the terminal first-class access to any named pipe defined in pipes.json, composing terminal binaries through the same orchestrator used by the IDE.


🚀 The Vision

The AI agent has a fundamental infrastructure problem: every tool call returns raw, unfiltered output directly into the context window. Logs arrive with timestamps. Search results arrive with boilerplate. Agent A's 40KB analysis gets passed verbatim to Agent B. The context window fills. Signal drowns in noise. The LLM degrades.

context-pipe solves this at the infrastructure layer — before the LLM sees anything.

In the Studio of Two philosophy, we build Systems, not Patches. A patch would be a custom filter per tool. A system is a universal protocol: any tool that reads stdin and writes stdout becomes a node. Any sequence of nodes becomes a pipe. Any pipe is named, versioned, audited, and reusable across every project and every agent framework.

The result is a context supply chain: data enters raw, passes through a sequence of refineries (normalize → filter → compress → distil), and arrives at the LLM as dense, high-signal content. Every byte saved is accounted for in the Context Balance Sheet. Every pipe run is traceable. Every A2A handoff is protected.

This is not a wrapper around semantic-sift. It is the orchestration layer that makes any refinery composable, observable, and production-grade. A node can be a binary, a shell command, a Python script, or a full MCP tool (Figma, GitHub, context-mode, or any server registered in pipes.json). If it reads stdin and writes stdout, it belongs in the pipe.

Example — crawl the web, research it, save it, and ship it:

trigger: tool:web_search | tool:web_fetch
[URL]
    → firecrawl/scrape             # MCP node: fetch live page as clean text     ~18,400 tokens
    → markitdown                   # binary node: convert to structured Markdown     ~16,200 tokens
    → rg 'security|vulnerability'  # shell node: surface only relevant sections      ~3,100 tokens
    → prettier --parser markdown   # shell node: normalize formatting                ~3,050 tokens
    → semantic-sift-cli doc        # binary node: distil to high-signal summary        ~420 tokens
          ↳ tee → research.md      # T-pipe: save raw distilled copy to disk
    → security-auditor             # script node: project-specific logic               ~380 tokens
    → github/create_issue          # MCP node: open a tracked issue with findings
Context Balance Sheet (illustrative)
  in:  18,400 tokens  →  out: 380 tokens  —  97.9% saved  ·  1.2s total

Every node is a real subprocess. The T-pipe saves a raw copy at any point without interrupting the chain. The LLM receives only what matters — and every byte in, byte out, and millisecond of latency is recorded in the Context Balance Sheet automatically.


🛠️ Core Components

1. The Context-Pipe Protocol (CPP)

A language-agnostic standard with one rule: a node reads stdin, transforms content, and writes to stdout. Any binary, shell command, Python script, or MCP tool that honours this contract is a valid node. The protocol is defined in doc/CONTEXT_PIPE_PROTOCOL.md and is deliberately simple — no SDKs, no registration, no framework coupling.

2. The Orchestration Spine (orchestrator.py)

The execution engine that chains nodes into pipes. Runs each node as a real OS subprocess with shell=False enforced (no injection surface). Features: per-node timeout guard (PIPE_NODE_TIMEOUT_MS), T-Pipe stream splitting (save raw input to disk before a node processes it), and full trace accounting (input/output size + latency per node).

3. The Universal Switchboard (pipes.json + mappings)

Data-driven routing that resolves the optimal pipe automatically based on three trigger types: tool name (tool:regex), payload size (size:>N), and default fallback. Pipe definitions live in pipes.json (project-level) and optionally ~/.mcp-pipe.json (global, merged with local precedence). No code changes required to add, modify, or re-route pipes.

4. The MCP Surface (server.py + mcp-pipe CLI)

Eight MCP tools expose every capability to AI assistants directly: pipe_run, pipe_run_dynamic, pipe_read_file, pipe_analyze_file, pipe_list_shadow_tools, pipe_agent_handoff, get_pipe_stats, and pipe_onboard. The mcp-pipe CLI mirrors the same surface for terminal-first workflows — no IDE required. Shadow Tool Discovery (pipe_list_shadow_tools) gives the agent a live capability manifest combining configured pipes and curated PATH tools (jq, rg, markitdown, pandoc…).

5. Subconscious Interceptors (pipe_hook.py + onboarding.py)

IDE hooks that apply pipes transparently after every tool call — without the agent needing to invoke pipe_run explicitly. Supported: Cursor (postToolUse), VS Code/GitHub (hooks), Claude Code/Qwen/Codex (PostToolUse), Windsurf and Cline (pre-read security gateway), OpenClaw (native plugin), and pi.dev (native TypeScript extension). For OpenCode, the AGENTS.md SOP mandate is the active strategy (see Known Limitations). pipe_onboard injects all hooks, slash commands (/pipe-run, /pipe-dynamic, /pipe-handoff, /pipe-stats), and the full agent SOP in one command.

6. The A2A Bridge (a2a.py)

pipe_agent_handoff() distils Agent A's output before it enters Agent B's context window. Framework-agnostic — no monkey-patching. Works in CrewAI task callbacks, Google ADK transfer hooks, LangGraph edge functions, or any custom handoff point. Available as both a Python function and an MCP tool. Returns the original output unchanged on any error, so the agent chain is never interrupted.

7. The Native Rust Core (crates/cpipe)

cpipe is the high-performance Rust heart of the Context-Pipe ecosystem. It ports the full orchestration engine — config merging, placeholder resolution, stream routing, and the self-aware bypass guard — to a pre-compiled native binary with <2ms startup latency (500× faster than the Python runtime). It coexists with the Python server: MCP tools stay in Python (FastMCP), while the Rust binary is available as a Tauri sidecar, a standalone CLI (cpipe run, cpipe list, cpipe serve), or a Cargo library for direct embedding in Rust applications. See crates/cpipe/README.md for the full API.


✨ What Makes This Different

Feature What it does Where
Unix pipe model for AI Chain any stdin and stdout tool into a named pipe. Binary, shell, script, or MCP tool — same contract. Advanced Node Types
MCP Node Type Call any MCP tool (Figma, GitHub, context-mode) as a first-class pipe node — no wrapper scripts. doc/MCP_NODE_SPEC.md
Compilation-free topology Routing lives in pipes.json, not in node code. Reroute, branch, or swap a node by editing the map — no code changes, no recompile, no redeploy of any node. doc/ARCHITECTURE.md
Protocol-first MCP composition Swap any MCP server by changing a server key. No imports, no dependency declarations, no build cycle. Every MCP server speaks the same protocol — the entire ecosystem is a drop-in capability layer. doc/ARCHITECTURE.md
Dynamic Pipes AI agents construct and execute ad-hoc node lists at runtime via pipe_run_dynamic — no pipes.json entry required. Dynamic Pipes
Shadow MCP Registry Keep utility MCP servers invisible to the agent's tool list until needed. pipe_list_shadow_tools queries them on demand. Shadow MCP Registry
A2A Agent Handoff Distil Agent A's output before it enters Agent B's context window — framework-agnostic, no monkey-patching. A2A Handoff
Version Awareness Proactive GitHub-backed update alerts in pipe_verify and pipe_onboard to ensure environment parity. Health Checks
Stream Integrity Hardened orchestration engine with non-UTF8 robustness (errors="replace") and null-safe reading. doc/ARCHITECTURE.md
T-Pipe Stream Splitting Save a raw copy of any node's input to disk before it is distilled — for audit, debugging, and quality measurement. 3. T-Pipe Nodes (Stream Splitting)
Adaptive Window Pressure Signals remaining context headroom to every node; semantic-sift auto-adjusts --rate accordingly. Environment Variables
Global Config Share pipe definitions and MCP server registries across all projects — local pipes.json always wins. doc/ARCHITECTURE.md
Shell Alias Injection pipe_install_aliases writes mcp-pipe / cpipe into your shell profile — terminal-ready without venv activation. Terminal Usage
Git Protection pipe_onboard automatically updates .gitignore to protect internal artifacts from being committed. Auto-Onboard
Context Balance Sheet Every pipe run is accounted: chars in, chars out, latency per node, agent attribution, net ROI. Telemetry & ROI

🧠 The Architecture: Semantic Enums (Solving Schema Bloat)

In standard MCP setups, exposing multiple capabilities (PDF parsing, log searching, HTML cleaning) means exposing multiple tools. This causes Schema Bloat: the LLM's system prompt fills with thousands of tokens of complex tool instructions. For Small Language Models (SLMs), this pushes out chat history, overwhelms the context window, and leads to hallucinations.

context-pipe solves this through Semantic Enums. Instead of teaching the AI how to use complex command-line utilities, you expose a single tool: pipe_run(input, pipe_name). The pipe_name parameter is simply an Enum of your predefined pipelines (e.g., ["parse-and-clean-pdf", "extract-critical-errors"]).

This perfectly separates Intent from Execution:

  • The LLM provides the Intent: "I need the clean text of this PDF, so I'll call the parse-and-clean-pdf pipe."
  • pipes.json provides the Execution: [pandoc -> jq -> semantic-sift]

By using brief, concise pipe names, you achieve extreme prompt compression. The AI gets a menu of high-level "buttons to push" rather than reading an instruction manual for every utility on the host machine. Better yet, if you upgrade your backend tooling (e.g., swapping pandoc for markitdown), you never have to update the LLM's prompt. The AI still calls the same pipe; the engine behind it just gets faster.


🔧 Three Independent Axes of Change

A CPP pipeline separates concerns across three layers that evolve on completely independent cycles:

Layer What it is How you change it
Nodes What each step does — a dumb stdin/stdout tool, unaware of the pipeline around it Swap the binary, script, or MCP tool
pipes.json The topology — how steps connect, branch, and route Edit the map. No code change. No recompile. No redeploy.
MCP servers The capability behind each tool call Change the server key. No imports, no dependency declarations, no build cycle.

Improving a node's quality does not change the topology. Restructuring the routing does not touch any node. Upgrading an MCP server improves every pipe that uses it automatically — with no pipeline changes.

For MCP nodes specifically, this dissolves the traditional dependency model entirely. Every MCP server speaks the same protocol: JSON-RPC, tools/call, text response. The pipe does not depend on what implements the service — it depends on what speaks the protocol. The entire MCP ecosystem is therefore the pipe's capability layer. Every current and future MCP server is already a valid drop-in replacement for any node that serves the same semantic purpose.

In a script, you depend on what you import. In a pipe, you depend on what speaks the protocol.

This separation also means routing is compilation-free. In a traditional script, safeguards and recovery logic are embedded in code — changing how a workflow recovers requires changing, testing, and redeploying the script. In CPP, routing lives in pipes.json. A branch, a reroute, or a node swap is a configuration edit. The feedback loop between "what if I reroute this" and "let me observe what happens" collapses to near zero.


🚀 Quickstart (60 seconds)

# 1. Install
pip install mcp-context-pipe "semantic-sift[neural]"

# 2. Onboard (auto-creates pipes.json + hooks for your IDE)
context-pipe-onboard   # or: ask your AI "Run pipe_onboard()"

# 3. Verify the full stack
echo "noisy log [14:22:05.123] DEBUG: heartbeat ok" | context-pipe run standard-distill
# → distilled, noise-free output with audit header

Full setup guide (Sovereign Dual-Repo Pattern, venv layout, IDE config): doc/OPERATOR_GUIDE.md


🏗️ Getting Started

1. Installation

Option A: Quick Install (PyPI)

Because MCP servers require an explicit Python executable path in your IDE config, you must create a virtual environment first:

ℹ️ What you get: This installs the Context-Pipe orchestration layer and Semantic-Sift's core Python server. The sift-core Rust binary (for near-instant heuristic sifting) is included in the PyPI wheel — no Rust toolchain required. The [neural] extra adds PyTorch (~1.5 GB) for large-payload semantic compression.

uv venv
# Windows: .\.venv\Scripts\activate
# macOS/Linux: source .venv/bin/activate
uv pip install mcp-context-pipe "semantic-sift[neural,multi-modal]"

Option B: Sovereign Pattern (Recommended for Studio of Two) Clone both repos side-by-side. The context-pipe venv acts as the master environment holding both packages. See Section 0 of the Operator's Guide for the full sequence.

# 1. Clone both repos
git clone https://github.com/luismichio/context-pipe.git
git clone https://github.com/luismichio/semantic-sift.git

# 2. Master venv in context-pipe - holds both packages
cd context-pipe
python3.12 -m venv venv
# Windows:
.\venv\Scripts\activate
# macOS/Linux:
# source venv/bin/activate
uv pip install -e .
uv pip install -e ../semantic-sift  # semantic-sift-cli lands in context-pipe/venv/Scripts/ (Win) or venv/bin/ (Mac/Linux)

# 3. ML runtime venv in semantic-sift (Python 3.12 for torch/CUDA compatibility)
cd ../semantic-sift
python3.12 -m venv venv312
# Windows:
.\venv312\Scripts\activate
# macOS/Linux:
# source venv312/bin/activate
uv pip install -e .[neural]         # torch, transformers, llmlingua

Note: The package name on PyPI is mcp-context-pipe but the installed module is context_pipe. The semantic-sift-cli binary is registered only in the venv where semantic-sift is pip-installed (step 2 above). Both pipes.json files must reference that absolute path.

2. Connect the MCP

CRITICAL: For exact configuration paths for Cursor, Gemini, Antigravity, OpenCode, VS Code, and Claude, reference the Master Configuration Matrix.

3. Connect a Refinery

Context-Pipe is the "Switchboard," but it needs a "Refinery" to distill data. Semantic-Sift is the flagship intelligence engine for this ecosystem. It uses heuristic sieves and neural models (BERT/ONNX) to incinerate noise (timestamps, boilerplate) while preserving 95% of the signal.

Note: In the Sovereign Pattern, semantic-sift is cross-installed into context-pipe/venv (step 2 above). Context-Pipe will also auto-discover a separately installed semantic-sift-cli across all known locations (system PATH, pipx, sibling venv directories) via pipe_onboard or pipe_verify.

4. Verify the Installation

After installing both packages, ask your AI assistant to verify the full stack:

"Run pipe_verify() to confirm the installation."

This will report the health of every component and automatically link semantic-sift-cli into pipes.json if it was found in a separate environment.

5. Configure your first Pipe

Edit pipes.json (see pipes.json.example) to define your high-fidelity context streams.

6. Auto-Onboard

Once connected, ask your AI Assistant to configure your workspace:

"Run pipe_onboard(environment='Cursor') to configure this project."

pipe_onboard auto-detects your IDE if environment is omitted — it inspects environment variables and parent-process names to fingerprint 12+ platforms (Cursor, Gemini, Antigravity, OpenCode, VS Code, Windsurf, Claude, Cline, etc.). Pass environment explicitly only when auto-detection is ambiguous.


📚 Documentation

Detailed documentation is available in the doc/ directory.


🐍 Programmatic Usage

Context-Pipe exposes a single pipe() function for direct integration into Python scripts, notebooks, and agent frameworks (LangChain, CrewAI, etc.) — no MCP server or CLI required.

from context_pipe import pipe

# Auto-route based on pipes.json mappings
clean = pipe(raw_logs, tool_name="bash")

# Specify a pipe explicitly
distilled = pipe(document_text, pipe_name="semantic-refinery")

# Minimal usage — returns input unchanged if no pipe resolves
result = pipe(text)

Function signature:

def pipe(
    text: str,
    pipe_name: str | None = None,
    tool_name: str = "",
    config_path: str = "pipes.json",
    vars: dict | None = None,
) -> str: ...
// def pipe(
    text: str,
    pipe_name: str | None = None,   # explicit pipe name; auto-routes if omitted
    tool_name: str = "",            # used for trigger matching and telemetry
    config_path: str = "pipes.json",
) -> str: ...

The function always returns the original text unchanged on any error (subprocess failure, missing config, etc.), so it is safe to use as a drop-in filter.

Rust Library (cpipe)

For Rust or Tauri applications, embed the native core directly:

use cpipe::config::load_pipes_config;
use cpipe::orchestrator::run_pipe;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let config = load_pipes_config();
    let pipe = config.pipes.iter().find(|p| p.name == "standard-distill")
        .ok_or("Pipe not found")?;

    let (output, _telemetry) = run_pipe(
        pipe,
        "raw context text here",
        Some("my-tool"), None, &config.servers,
    ).await;

    println!("{output}");
    Ok(())
}

Add to your Cargo.toml:

[dependencies]
cpipe = { git = "https://github.com/luismichio/context-pipe", path = "crates/cpipe" }

Pre-built binaries for Windows, macOS (Intel & Apple Silicon), and Linux are available on the GitHub Releases page, or download via:

python scripts/fetch_cpipe.py

🤝 A2A (Agent-to-Agent) Handoff

When chaining agents, use pipe_agent_handoff to distil Agent A's output before it enters Agent B's context window. Works with any framework — no monkey-patching required.

from context_pipe.a2a import pipe_agent_handoff

# In a CrewAI task callback, ADK transfer hook, or any custom handoff point:
agent_b_input = pipe_agent_handoff(
    agent_a_output,
    pipe_name="semantic-refinery",   # optional; auto-routes if omitted
    from_agent="researcher",
    to_agent="writer",
)

Also available as an MCP tool — ask your AI assistant: "Run pipe_agent_handoff() to distil this agent output before passing it on."

Function signature:

def pipe_agent_handoff(
    output: str,
    pipe_name: str | None = None,   # explicit pipe; auto-routes if omitted
    from_agent: str | None = None,  # producing agent label (telemetry + routing)
    to_agent: str | None = None,    # consuming agent label (telemetry only)
    config_path: str = "pipes.json",
) -> str: ...

Always returns the original output unchanged on any error — the agent chain is never interrupted.


💻 Terminal Usage (mcp-pipe CLI)

Context-Pipe ships a first-class terminal runner — mcp-pipe — so you can use every capability without an IDE or MCP server.

# Run a named pipe on stdin
cat app.log | mcp-pipe run standard-distill

# Run a named pipe on a file directly
mcp-pipe run semantic-refinery --file spec.md

# Run an ad-hoc node array (shell synergy requires --allow-shell)
echo "noisy output" | mcp-pipe run-dynamic '[{"cmd":"semantic-sift-cli","args":["logs"]}]'

# List all configured pipes + curated PATH tools (Shadow MCP discovery)
mcp-pipe list

# Print the Context Balance Sheet (ROI across all sessions)
mcp-pipe stats

# Start the MCP server manually (stdio transport)
mcp-pipe serve

# Install/remove the cpipe shell alias
mcp-pipe aliases install
mcp-pipe aliases remove

The mcp-pipe entry point is registered automatically when you pip install mcp-context-pipe. Use cpipe as a shorthand after running mcp-pipe aliases install.

Shadow MCP Registry

Every MCP server you add to an IDE registers its tools globally — they all appear in the agent's tool list whether the agent needs them or not. At scale this causes MCP tool bloat: hundreds of tools in the prompt, wasted tokens on every inference call, and a higher chance the agent picks the wrong one.

context-pipe takes a different approach. Instead of registering every context-processing tool as a first-class MCP tool, it exposes a single discovery toolpipe_list_shadow_tools — that returns a live capability manifest on demand. The tools stay hidden ("shadow") until the agent asks for them. One MCP tool does the work of many.

What the manifest includes:

  1. pipes.json pipes — every named pipe configured in your project.
  2. Curated PATH tools — probes 7 well-known CLI tools (jq, yq, markitdown, pandoc, rg, fd, bat) and surfaces any found on PATH.

Known limitation: shadow tools are not callable as independent MCP tools — the agent must route them through pipe_run or pipe_run_dynamic. This is by design (it keeps the MCP surface minimal), but it means the agent cannot call jq or markitdown directly without constructing a dynamic pipe node.

Terminal access via mcp-pipe: the same manifest is available without an IDE or MCP server — mcp-pipe list prints every pipe and curated PATH tool to stdout. Pipe any content through a shadow tool directly from the terminal:

# Discover what's available
mcp-pipe list

# Run a shadow tool via a dynamic pipe — no pipes.json entry needed
echo "# My Doc" | mcp-pipe run-dynamic '[{"cmd":"markitdown"},{"cmd":"semantic-sift-cli","args":["doc"]}]'

🔗 Advanced Node Types

Context-Pipe supports more than just simple binaries. You can chain standard OS tools and expert mandates.

1. Bash Nodes (Sandboxed)

Execute arbitrary shell commands as part of your pipe. By design, all commands are executed natively with shell=False to prevent injection vulnerabilities.

{ "cmd": "grep", "args": ["ERROR"] }

2. Script Nodes

Executes a project-specific script (Python/Shell) or a local instruction set. Resolved from .gemini/scripts/ (default).

{ "type": "script", "cmd": "security-auditor" }

3. T-Pipe Nodes (Stream Splitting)

Save a raw copy of the stream to disk before a node distils it — without interrupting the chain. Useful for debugging pipe quality and auditing what was sifted out.

{
  "cmd": "semantic-sift-cli",
  "args": ["logs"],
  "tee": {
    "sink": "file",
    "path": "logs/{tool_name}_{iso_date}.log",
    "mode": "append"
  }
}

path supports {iso_date} (YYYY-MM-DD) and {tool_name} tokens. A tee failure never interrupts the main chain.

4. MCP Nodes

Call any MCP tool as a pipe node. No wrapper scripts — the orchestrator spawns the MCP server, calls the tool, and passes the result downstream via stdout.

{
  "type": "mcp",
  "server": "figma",
  "tool": "get_file",
  "input_key": "file_id"
}

Server definitions live in a servers block in pipes.json or ~/.mcp-pipe.json. See doc/MCP_NODE_SPEC.md for the full spec.

5. Validator Nodes (Phase 11)

A validator runs a subprocess and routes on its exit code instead of flowing linearly. Use this to build self-healing pipelines that try to fix problems automatically before failing.

{
  "name": "self-healing-lint",
  "nodes": [
    {
      "cmd": "eslint",
      "args": ["--format", "compact", "src/"],
      "type": "validator",
      "id": "lint-check",
      "branches": {
        "0": "done",
        "1": "auto-fix",
        "default": "auto-fix"
      }
    }
  ],
  "branch_sequences": {
    "auto-fix": [
      { "cmd": "eslint", "args": ["--fix", "src/"] },
      { "cmd": "semantic-sift-cli", "args": ["logs"] }
    ],
    "done": [
      { "cmd": "semantic-sift-cli", "args": ["logs"] }
    ]
  }
}
  • Exit 0 → linting passed, jumps to done (distil the clean report).
  • Exit 1 → linting failed, jumps to auto-fix (run --fix, then distil).
  • "default" catches any other exit code (e.g. 2 for ESLint config errors).
  • The validator's stdout is forwarded as input to the target sequence.

6. Condition Keys (Phase 11)

Any node can be conditionally skipped without modifying the pipe definition:

{
  "cmd": "neural-summariser",
  "condition": "size:>8000"
}

The node only runs if the current input exceeds 8 000 bytes. Supported predicates:

Predicate Example When the node runs
size:>N size:>10000 Input length > N bytes
size:<N size:<500 Input length < N bytes
artifact:exists:<path> artifact:exists:dist/app.js File exists on disk
artifact:missing:<path> artifact:missing:output/report.md File does NOT exist
contains:<string> contains:ERROR Leading 300 chars contain the substring

Unknown predicates fail-open (warn + run the node) to avoid silently blocking pipelines.

🔗 The Ecosystem (Studio of Two)

Context-Pipe is a foundational member of the Studio of Two infrastructure. It is designed to work in high-fidelity harmony with:

  • Semantic-Sift: The intelligent refinery for agentic context. Sift is the flagship distillation engine for Context-Pipe, providing the mathematical and neural sifting nodes used in our standard templates.
  • std-context-lab: The official integration laboratory and test gauntlet. This repository serves as our isolated battle-testing ground where cross-repository capabilities, MCP server combinations, and terminal hook interactions are simulated and verified.
    • Isolated Scenarios: Runs isolated test cases mimicking real-world AI behaviors to reproduce and verify fixes without polluting core runtimes.
    • Empirical Evidence: Every resolved bug or feature is accompanied by a tracked execution log (EVIDENCE.md), serving as empirical proof of success.
    • Platform Parity Gate: Audits Python/Rust CLI parity and shell behaviors across Windows (PowerShell/CMD) and UNIX terminals before release.

🧩 Tool Synergies & Boundaries

Four tools often appear together in a Studio of Two stack. They are complementary, not overlapping — each owns a distinct layer.

Tool Layer Primary Role Relationship
context-pipe Orchestration Routes content through named pipes; manages node execution, timeouts, T-pipe, telemetry, and A2A handoff. The switchboard. Calls all other tools as nodes when wired together.
semantic-sift Distillation Heuristic + neural compression of text. Removes noise (timestamps, boilerplate, repeated tokens) while preserving signal. Fully standalone CLI and MCP server. The flagship refinery node inside context-pipe pipes.
context-mode In-session indexing BM25 full-text search over content indexed during the current agent session. Fast retrieval without a vector database. Fully standalone MCP server. Optionally wired as an mcp node to index or search within a pipe.
Serena Code intelligence LSP-backed symbol search, refactoring, and code navigation. Understands the AST — not just text. Fully standalone MCP server. Optionally wired as an mcp node to feed precise code symbols into a pipe instead of raw file reads.

When to use which

Use context-pipe when you need to orchestrate: chain tools, apply pipes automatically on tool call, route by trigger, save T-pipe snapshots, account for ROI, or bridge agent handoffs.

Use semantic-sift when you need to compress: a large document, a log file, a search result, or any payload where noise-to-signal ratio is high. Runs standalone via CLI or MCP — and as a node inside context-pipe pipes.

Use context-mode when you need to retrieve: you have already ingested content this session and want fast BM25 search over it. Works standalone as an MCP server in any IDE. Pair it with semantic-sift on both sides — upstream to compress content before indexing (smaller index, faster search), and downstream to distil retrieved chunks before they hit the context window.

Use Serena when you need to navigate code: find a symbol, trace references, inspect types, or perform a refactor. Works standalone as an MCP server. Its structured, precise output is far better than a raw file read as input to any downstream tool — including a sifting pipe.

Complementary setup — reducing token usage

Each tool independently reduces token pressure. Together, the savings compound:

  • Serena returns only the symbol you asked for — not the entire file.
  • semantic-sift compresses content before it enters context-mode (smaller index, faster search) and after retrieval (noise-free chunks into the context window).
  • context-mode returns only the relevant indexed chunks — not the entire ingested corpus.
  • context-pipe ensures this sequence fires automatically and is accounted for — no manual wiring per task.

The result: the agent works with a fraction of the raw token volume, every session, without changing how it thinks or what tools it calls.

Synergy example

[user query]
    → serena/find_symbol           # MCP node: precise code symbol — not a raw file dump
    → context-mode/search          # MCP node: retrieve related session context
    → semantic-sift-cli semantic   # binary node: compress both into a dense summary
    → security-auditor             # script node: project-specific logic

All four tools in one pipe. Each doing exactly one job.


⚙️ Environment Variables

Variable Default Description
PIPE_CONFIG_PATH pipes.json Absolute path to the project's pipes.json config file.
PIPE_NODE_TIMEOUT_MS 30000 Per-node execution timeout in milliseconds.
allow_shell false Enable arbitrary shell command nodes in dynamic pipes (pipe_run_dynamic MCP tool / run_dynamic_pipe() API). Requires the final node to be a semantic-sift terminal command to guarantee context safety.
PIPE_LOG_LEVEL (none) Default pipeline logging level (compact or verbose). Enables logging for all pipes if set.
PIPE_LOG_PREFIX [PIPE] Default text prepended to pipeline execution logs on stderr.

⚠️ Known Limitations

OpenCode — MCP Tool Output Interception

The "subconscious interceptor" feature (pipe_hook.py) works transparently for Cursor, VS Code, Gemini CLI, Antigravity CLI, and Claude Desktop by injecting hook handlers that fire after every tool call.

OpenCode is the exception. The tool.execute.after hook is declared in the OpenCode plugin Hooks interface but is never triggered by the OpenCode runtime (confirmed via source audit of session/processor.ts, session/llm.ts, tool/registry.ts, agent.ts). The plugin's output mutation code is silently a no-op.

Current workaround: The AGENTS.md SOP mandate (pipe_read_file for all file reads) is the active interception strategy for OpenCode until transparent hook injection is supported upstream.


⚖️ Licensing

context-pipe is licensed under the Apache License 2.0. It is an "Open Source, Closed Contribution" project maintained by the Studio of Two to ensure architectural integrity.


Building High-Fidelity Infrastructure for the Intelligence Age.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_context_pipe-0.5.3.tar.gz (132.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mcp_context_pipe-0.5.3-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

mcp_context_pipe-0.5.3-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

mcp_context_pipe-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mcp_context_pipe-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mcp_context_pipe-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mcp_context_pipe-0.5.3-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

mcp_context_pipe-0.5.3-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

mcp_context_pipe-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mcp_context_pipe-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mcp_context_pipe-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mcp_context_pipe-0.5.3-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

mcp_context_pipe-0.5.3-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

mcp_context_pipe-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mcp_context_pipe-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mcp_context_pipe-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mcp_context_pipe-0.5.3-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

mcp_context_pipe-0.5.3-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

mcp_context_pipe-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mcp_context_pipe-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mcp_context_pipe-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file mcp_context_pipe-0.5.3.tar.gz.

File metadata

  • Download URL: mcp_context_pipe-0.5.3.tar.gz
  • Upload date:
  • Size: 132.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mcp_context_pipe-0.5.3.tar.gz
Algorithm Hash digest
SHA256 0a5b05039a8aa63330b48d00628d6389950a69dfb35815e2d99550c117aae30d
MD5 20128e0ae33122dba5e47160e0eb2f91
BLAKE2b-256 d4e68ce0a33cfd54f4442a9db91d6f3da715c1d10ab95d1f7a8f6351ecb58097

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3.tar.gz:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 62081a5ed45df14c2e75247f180ce97a4561d41dae7d722bfd8819be98d6830f
MD5 13a18e9e203ad84efec3d3c468a4514a
BLAKE2b-256 4e6d2f6175d61e99e1d75afd69707628b91bc785431083c6c10a899385aa7824

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d5f71cd13621c70f570393fc91325b291f39c0b29391f62755962054213b4b30
MD5 7c13d991838594495b6e2efe4eac130b
BLAKE2b-256 46da2be0600ed9acb1d441a13027852fd9eeafd358edd053cb3f1758a94c49db

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp313-cp313-win32.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a9554b17ab1d98c3c18b9f29792712564691c1ee6eccc7257e66f4631443a91
MD5 13464716641f82b96221e7429b06d391
BLAKE2b-256 cb26ed6912c61d83bc533ed4ae3033ae494910a3e337904635ac59ed58fab198

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35eff04496f97f01c92042232de20cf599d0e169697dee4d324f99faf6b3b481
MD5 10b61f25e51b9ef36b5cc675014d63d1
BLAKE2b-256 7f2ee5fc0e3c4398739432ea4248a87ecd287944e1aca8a57e6c0dd75da97a32

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2d4cda8fd9180c219518c70b35918b6c3a9f23b25c9f666a43a1832033e577a7
MD5 1a29f632ba3668fa4db1a67f19d80ac6
BLAKE2b-256 82c16a793962c99c4609f73243eaceba59f3a18cf15495d8bf29134d63542025

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4986285765b70755e616c33f70b877f46bdc97ff15e5304fafb9d9ea70861b2
MD5 e09be6b35ba5232a47356ffa083dcbcd
BLAKE2b-256 510b2cc0f169bc4eeffe59131b8fa56e79c82d3934db92ba59146f41d43759f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1efa1788f42b2d4be82d73f8aaae46768ee3bb9ad835d4c16a241b10c294a2e4
MD5 a9f7b550b34ae27dd84b798e74057d29
BLAKE2b-256 234a86a20237dbc3c9911dd63d7a00903eb6b50f332e13357ca269a9a1a09c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp312-cp312-win32.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6897daef7485890834c0b495967ddb55f6dfcc5b5aeac90fdbb4f09cca12e4a
MD5 5ac3e4e0c6756ef6b4c997f2d99e9831
BLAKE2b-256 c208f19c1e219da62a73537f12a057e147e216f06bc5cb68abec94e53546e152

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 526e80a4c1ff0a98e5998cca1ec4a996ebf3eaa3ba53914d9a8e72b1956cc78b
MD5 8522c2490a0f16a8e186936a59058d68
BLAKE2b-256 86cc2464da38f65f765646d2d3c82a8eb6b29148803c7a2ce61fc7c7280138c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21daa099aa449702ca95da0137bebfb46868a59a269c1ddf033962d983bf5f9b
MD5 92bec3bef7fed73ef2d050c2217bfc0d
BLAKE2b-256 ba48e46c283fbe3ad3ac2f4c39dda153b7c43f85c9f614cc903d47105c354620

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7705546d77e56eab959780412eaa74320279d61145a7f52ae51ed5c89f607e04
MD5 3463e5e5e6bc3a60c756dbf707ec6a75
BLAKE2b-256 7d9b6b3b1cdedd09550ee461794b23e644ea39eb6e83c1098004d707715c7400

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 00a449bf81f2eb34918a0e42016c376f5989f138e9ca90f954d7d003ce20317c
MD5 130b40b9b43bee64c721640151e81883
BLAKE2b-256 a68127b0e6246859045f207f08137d8c74693b3d71ffef5d3d846a9fc4d357e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp311-cp311-win32.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad7dfa5fd1cb2acf4261b42eb9d98639614e83228fa5c1f8f14ed4519c90ab12
MD5 f3e2c4a0db200badd272ca3b5771b292
BLAKE2b-256 a5a76910d71410a60feb170ed320a0812e47f46894f2ec60ce3e4fc1484d72d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 993a581b94fac5e293e98e37476fca9a40a6e1c654fbf2f8b101461246ac3dbe
MD5 a11b5d0017e5113477b6c61f93d9f5e5
BLAKE2b-256 ea73f76353a59df905a973e63e320800118518fe2adebcaa08e6c2a9c065887e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a02559dec7d30da47c49d2b28e0e2cad79c4d30fd0a8e30850618773549d6b34
MD5 cfceb2e0faf4a43fe0d630d16f9653e4
BLAKE2b-256 8d03c4ccfa5f054a5ddf1db5907f3eb5dc7c77da266bc006f7a758582b140961

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50803f2692ac46080d007cfb086629e96b1619399a0c1b4c988a448d075dab35
MD5 be13489fc40114905c6dde3ab1f984ca
BLAKE2b-256 fc36476439f3cc25357ef7baa93525b10784061f50743e6f0726c05c4e3361df

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 50b1471c2d4305f6fe084b951f5910e40245168204d5170ef356f15b9b65f98e
MD5 66d7d6f3eaa369dac3005015b6ae7ec7
BLAKE2b-256 83e8782f058294d7c29803f0728e6c9aa5bb7151a3d365c1c7ea4d63e8553eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp310-cp310-win32.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fbed5697029aecc05d2cb3835ac9075da7223f0246b1d4f6c8b851e2f7f4572
MD5 0158d53be9b160e679b60e0f98056cd6
BLAKE2b-256 ba53772e349fb5ca62c24b8ff27bb297d5d8ab63034ada62cee581c0592157ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d53361303b5cc543145509daf11d1b45683c0973fd3b1a8711490bb374fda1
MD5 2e05063cb519198a85bade1e009de36f
BLAKE2b-256 0a971fb9fc60a58d60f05532744d28d04ec563a16afd91faaf0c82153d5bf99c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_context_pipe-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mcp_context_pipe-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e2ee3981ecde7077937315a0844363ad8eebbb21d1d31a7fee46d36b29c47fb
MD5 fa5f8c9fc9fc6d18a569eb521fa67b39
BLAKE2b-256 66893684bb89e7d57abeeb737e2996b7a35745fc53989d80a923c0c5f7149304

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_context_pipe-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on luismichio/context-pipe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page