Skip to main content
Glama
CAPHTECH
by CAPHTECH

PCE Memory

Process-Context Engine (PCE) - MCP Server for Context-Aware Memory & Retrieval

CI License: MIT

Overview

PCE Memoryは、LLMエージェントやアプリケーションに文脈記憶・検索・統合機能を提供するMCPサーバーです。

Key Features

  • 🔒 Boundary-first Security: スコープベースの境界管理とRedact-before-send

  • 🧠 Dual-phase Memory: LCP (長期記憶) + AC (短期記憶) の二相アーキテクチャ

  • 🔍 Hybrid Search: FTS + VSS のハイブリッド検索 (r, S, g 関数)

  • 📊 DuckDB Storage: 組み込みDuckDBによる高速ローカルストレージ

  • 🎯 MCP Protocol: Model Context Protocol v1.0.4 準拠

  • 🛡️ Law-Driven Engineering: fp-ts/io-ts によるType-safe & Property-based Testing

Related MCP server: mcp-synaptic

Benchmark Results

pce-memory's hybrid search pipeline is evaluated across three dimensions: search quality, scalability, and latency.

Search Quality (Ablation Study)

Search Method

Recall@10

nDCG

Latency

Text-only (BM25)

50.0%

50.0%

34.7ms

Vector-only (Semantic)

87.1%

69.0%

32.3ms

Hybrid (BM25 + Vector)

91.7%

81.0%

32.6ms

Hybrid search combines the precision of keyword matching with the semantic understanding of vector search, achieving +41.7pp recall over text-only and +4.6pp over vector-only.

Provenance-Aware Reranking

The g() reranking function leverages claim provenance quality to improve result ordering:

Metric

Without Rerank

With Rerank

Delta

Recall@10

65.2%

74.2%

+9.1pp

nDCG

62.4%

67.1%

+4.7pp

Measured at 150 claims (golden + synthetic noise). Claims with richer provenance (actor, notes) are ranked higher.

Scalability

Claims

P@5

R@10

MRR

Latency p50

15

18.2%

91.7%

83.0%

38ms

50

18.2%

87.9%

79.8%

42ms

100

17.3%

87.9%

78.9%

40ms

250

17.3%

81.1%

77.7%

43ms

500

15.5%

72.0%

68.6%

45ms

1,000

15.5%

72.0%

68.6%

57ms

5,000

12.7%

60.6%

61.4%

60ms

Latency Profile

Operation

Time

Embedding model cold start

177ms (once per session)

Embedding (cached)

0.1ms

Search p50 (with rerank)

37.5ms

Rerank overhead

5.1ms

All operations are well below the 100ms human perception threshold. Run pnpm benchmark to reproduce (requires apps/pce-memory/external/assay-kit submodule).

Project Structure

pce-memory/
├── apps/
│   └── pce-memory/          # MCP server implementation
├── packages/
│   ├── pce-boundary/        # Boundary validation & redaction
│   ├── pce-embeddings/      # Embedding provider abstraction
│   ├── pce-policy-schemas/  # YAML policy schemas
│   └── pce-sdk-ts/          # TypeScript client SDK
├── docs/                    # Documentation
│   ├── pce-memory-vision.md
│   ├── core-types.md
│   ├── mcp-tools.md
│   ├── boundary-policy.md
│   └── activation-ranking.md
├── scripts/                 # Development and local validation helpers
└── validation/              # Local validation tasks and result artifacts

Quick Start

Prerequisites

  • Node.js: ≥ 22.18.0 (LTS)

  • pnpm: ≥ 9.0.0

Installation

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run tests
pnpm test

# Run property-based tests
pnpm test:pbt

Running the MCP Server

# Start MCP server (stdio transport)
cd apps/pce-memory
pnpm dev

Development Workflow

# Watch mode (auto-reload on file changes)
pnpm dev

# Type checking
pnpm typecheck

# Linting
pnpm lint
pnpm lint:fix

# Formatting
pnpm format
pnpm format:check

# Clean build artifacts
pnpm clean

Local Architecture Validation with Ollama

The repository includes a documented local validation workflow for architecture experiments using Ollama and qwen3.5:122b-a10b.

# Interactive Codex against Ollama
pnpm local:codex

# Interactive Claude Code through Ollama launch integration
pnpm local:claude

# Canonical smoke task
pnpm local:validation:smoke

See docs/local-validation-ollama.md for machine assumptions, launch recipes, known limitations, and result capture conventions.

MCP Tools

PCE Memoryは以下のMCPツールを提供します:

Tool

Description

pce_memory_policy_apply

ポリシー適用と状態初期化

pce_memory_observe

raw observation を記録(短期TTL、durable化はしない)

pce_memory_distill

observation / claim / active context から昇格候補を作成

pce_memory_promote

候補を durable claim に昇格

pce_memory_rollback

durable claim の append-only repair

pce_memory_upsert

既に蒸留済みの durable knowledge を直接登録

pce_memory_activate

intent-aware に Active Context を構成

pce_memory_boundary_validate

境界チェック / redact-before-send

pce_memory_feedback

durable claim へのフィードバックを送信

pce_memory_state

状態情報を取得 (state/policy_version)

pce_memory_sync_*

.pce-shared/ との push / pull / status

詳細は docs/mcp-tools.md を参照してください。

現在の推奨フローは次のとおりです。

observe -> distill -> promote -> activate(intent) -> feedback -> rollback
  • observe は raw-only です。durable claim は inline で作りません。

  • upsert は already-distilled な durable knowledge の escape hatch です。

  • scope=sessionboundary_class=secret の durable 書き込みは避け、observe を使います。

Observation(pce_memory_observe)の保持とセキュリティ(要点)

  • Observation は短期TTLで保持し、期限後は content をスクラブ(NULL化)する運用を推奨します。

  • PCE_OBS_TTL_DAYS / PCE_OBS_TTL_DAYS_MAX で TTL を調整できます。

  • PCE_OBS_MAX_BYTEScontent の最大バイト数を制限できます(既定 65536)。

  • PCE_OBS_STORE_MODEraw|redact|digest_only)で保存モードを調整できます(既定 redact)。

  • secret を検知した場合は fail-safe として content を保存せず、抽出もスキップします(詳細は docs/mcp-tools.md の observe を参照)。

Architecture

PCE Memoryは以下のコアモジュールで構成されます:

  • Observation Store: raw observation を TTL 付きで保持し、必要に応じて redact / digest-only を適用

  • Promotion Pipeline: distill -> promote -> rollback で durable claim を管理

  • Retriever: activate で intent-aware に文脈を検索・活性化 (Query + LCP -> AC)

  • Critic: durable claim を評価・更新 (Feedback -> utility/confidence/recency)

詳細は docs/pce-memory-vision.md を参照してください。

Testing Strategy

Law-Driven Engineering (LDE)

PCE Memoryは**Law-Driven Engineering (LDE)**原則に従います:

  1. Type-driven Design: fp-ts/io-ts によるBranded Types

  2. Property-based Testing: fast-checkによる不変条件検証

  3. Errors as Values: Either/TaskEither による明示的エラー処理

  4. Detroit School TDD: 実際のコンポーネント連携をテスト

Formal Verification

  • pnpm formal:tla — TLA+ (TLC)。tlc が無い場合は Docker ghcr.io/tlaplus/tlaplus を自動利用。

  • pnpm formal:alloy — Alloy (SAT4J)。初回実行時に jar を .cache/formal に取得し Java で全コマンドを走査。

  • pnpm formal:all — 上記まとめ実行。

Test Commands

# All tests (unit + property-based)
pnpm test

# Property-based tests only
pnpm test:pbt

# With coverage (≥ 80% required)
pnpm test --coverage

# Watch mode
pnpm test:watch

詳細は packages/pce-boundary/test/README.md を参照してください。

Contributing

Code Quality Gates

Gate

Threshold

Static Analysis

0 errors

Coverage

≥ 80%

Cyclomatic Complexity

≤ 10

Mutation Score

≥ 60% (optional)

Commit Convention

feat: Add new feature
fix: Fix bug
docs: Update documentation
test: Add tests
refactor: Refactor code
chore: Update build config

License

MIT License - see LICENSE for details

Documentation

Acknowledgments

Built with ❤️ by CAPHTECH, following Law-Driven Engineering principles and inspired by:

  • Ernst Cassirer's Philosophy of Symbolic Forms

  • Actor-Network Theory (ANT)

  • Buddhist concepts of dependent origination (縁起)


Status: 🚧 Work in Progress (MVP Phase)

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
4dRelease cycle
26Releases (12mo)
Commit activity
Issues opened vs closed

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CAPHTECH/pce-memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server