pulse8-ai-cortex-knowledge-vault
OfficialEnables CrewAI agents to share and evolve knowledge collaboratively through the vault's MCP interface.
Integrates with JetBrains IDEs through MCP for development tools to access and update the knowledge vault.
Allows LangChain agents to use the vault as a dynamic memory store with hybrid search and file compilation.
Provides LangGraph agents with a persistent memory layer and knowledge graph traversal capabilities via MCP.
Lets Obsidian users synchronize and manage Markdown notes with the vault, leveraging wikilinks and graph features.
Enables OpenAI Agents to store, search, and compile knowledge using the vault's typed knowledge graph and full-text search.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pulse8-ai-cortex-knowledge-vaultsearch my vault for notes on machine learning"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PULSE8.ai Cortex is the open-source knowledge layer for AI agents: Git-native memory, a typed knowledge graph, and MCP-powered retrieval on top of plain Markdown — so agents can build, evolve, and reuse persistent knowledge instead of re-deriving it on every query.
Under the hood it's a unified vault for AI agents and humans, backed by a typed knowledge graph, full-text + hybrid search, and a MarkItDown-powered file compiler. Drop files in (PDF, DOCX, PPTX, XLSX, HTML, images, and more), let agents read, write, search, link, and compile knowledge — no database required.
Inspired by Andrej Karpathy's LLM Wiki pattern — a persistent, compounding knowledge base maintained by LLMs instead of re-derived on every query. Search powered by Tobi Lütke's QMD.
Why PULSE8.ai Cortex?
Most AI agents can access tools, but they cannot accumulate knowledge.
Traditional RAG systems retrieve documents. PULSE8.ai Cortex builds a persistent, evolving knowledge layer that grows over time and becomes more valuable the more agents and humans interact with it.
With PULSE8.ai Cortex, agents can:
Learn from interactions — every read, write, ingest, and compile event is logged and graph-linked
Build and traverse knowledge graphs — wikilinks, tags, and typed edges, maintained automatically
Store structured insights — Markdown notes with typed nodes (
note,agent_def,session,daily,feedback)Retrieve context across projects —
vault_contextbuilds a ranked subgraph from any seed queryShare knowledge through MCP — one vault, every MCP-compatible client
Maintain long-term memory — files survive sessions, deployments, and model upgrades
Version knowledge through Git — the vault is a plain directory of Markdown, diff-friendly out of the box
Aspect | Traditional RAG | PULSE8.ai Cortex |
Focus | Documents | Knowledge |
Memory | Session-based | Persistent |
Structure | Chunks | Markdown + typed graph |
Evolution | Static index | Continuous, file-watched |
Versioning | None | Git-native |
Agent collaboration | Limited | First-class (MCP) |
Related MCP server: 2BToRePensieve
When to use PULSE8.ai Cortex
Ideal use cases
✅ Persistent memory for AI agents
✅ Shared knowledge across multiple agents
✅ Git-versioned organisational knowledge
✅ MCP-compatible knowledge retrieval
✅ Knowledge graphs without a dedicated graph database
✅ Long-term accumulation of institutional knowledge
✅ Human + AI collaborative knowledge management
Not ideal for
❌ Simple full-text document search (use a search engine)
❌ Pure vector-only retrieval with no graph (use a vector DB)
❌ Short-lived, stateless conversations
❌ Workflows that don't need persistent knowledge evolution
PULSE8.ai Cortex vs alternatives
Capability | PULSE8.ai Cortex | Traditional RAG | GraphRAG |
Persistent knowledge | ✅ | ❌ | ⚠️ |
Markdown-native storage | ✅ | ❌ | ❌ |
MCP-compatible out of the box | ✅ | ❌ | ❌ |
Knowledge graph | ✅ | ❌ | ✅ |
Git versioning | ✅ | ❌ | ❌ |
Agent memory layer | ✅ | ❌ | ⚠️ |
Human + AI collaboration | ✅ | ❌ | ⚠️ |
Continuous knowledge evolution | ✅ | ❌ | ⚠️ |
Zero database required | ✅ | ❌ | ❌ |
Works with
PULSE8.ai Cortex speaks MCP — so it plugs into any AI client that does. The same vault is reachable over streamable HTTP or stdio, and mirrored 1:1 by a REST API at /api/v1/.
Category | Compatible with |
AI agents | Claude Desktop, Claude Code, OpenAI Agents, Gemini, custom agent frameworks |
Development tools | Cursor, VS Code, JetBrains IDEs |
Agent frameworks | LangGraph, LangChain, CrewAI, AutoGen |
MCP ecosystem | MCP clients, MCP servers, MCP tool registries |
Human tools | Obsidian, any Markdown editor, any Git client |
Because the vault is just files, humans and agents collaborate on the same knowledge — no proprietary format, no lock-in.
Get started
PULSE8.ai Cortex requires Docker. AnOpenRouter API key is optional — needed only for LLM-powered cross-referencing between wiki articles. File conversion works out of the box without any API key.
Clone the repository:
git clone https://github.com/synpulse8-opensource/pulse8-ai-cortex-knowledge-vault.git
cd cortex-knowledge-vaultLaunch PULSE8.ai Cortex:
./scripts/start.shThis builds and starts both **PULSE8.ai Cortex** (API + MCP on `:8420`) and **QMD** (search on `:3100`), waits for health checks, and you're ready to go.
Connect your MCP client (e.g. Claude Desktop) to
http://localhost:8420/mcp/.
To stop: ./scripts/stop.sh
Native QMD mode (macOS / Metal GPU)
Docker Desktop on macOS cannot expose the Metal GPU to containers, so containerized QMD embeds on CPU only — over an order of magnitude slower on non-trivial vaults. Run QMD natively instead; the qmd binary uses Metal automatically:
# One-time: install the qmd binary
brew install tobi/tap/qmd # or: npm install -g @tobilu/qmd
# Start native QMD (background daemon) + Cortex in Docker
./scripts/start.sh --native-qmdThe QMD daemon's pid and log are kept in .qmd-native.pid / .qmd-native.log. To stop both: ./scripts/stop.sh --native-qmd (a plain ./scripts/stop.sh also cleans up a native QMD if one is running).
Cortex-only mode (external QMD)
If you manage QMD yourself (already running elsewhere), start only the Cortex container:
./scripts/start.sh --cortex-only # set QMD_URL in .env if not http://host.docker.internal:3100To stop: ./scripts/stop.sh --cortex-only
GPU-accelerated QMD (EC2 / Linux with NVIDIA GPU)
For production deployments with NVIDIA GPU acceleration:
docker compose -f docker-compose.yml -f docker-compose.gpu.yml up --build -dSee docs/ec2-gpu-setup.md for a full guide on instance selection, NVIDIA toolkit installation, and cost estimates.
Features
Knowledge Graph | Typed graph engine (NetworkX) — wikilinks, tags, and custom edges, auto-maintained on every file change |
Full-Text Search | QMD search with hybrid (BM25 + vector + re-ranking) by default; keyword and semantic modes selectable. Results cached with a configurable TTL. |
File Compiler | Converts raw sources (PDF, DOCX, PPTX, XLSX, HTML, images, etc.) to Markdown via MarkItDown. LLM used only for cross-referencing. |
MCP Server | Streamable HTTP + stdio transport — works with Claude Desktop, Cursor, and any MCP client |
Feedback & Notifications |
|
Daily Activity Log | Every write/ingest/compile is mirrored into |
Bulk Ingest | Ingest dozens or hundreds of files at once from a local directory with SHA-256 dedup and bounded concurrency |
REST API | FastAPI endpoints mirroring all MCP tools at |
Vault Watcher | Real-time filesystem monitoring — graph stays in sync automatically |
Lineage & Audit | Every edge labeled |
Graph Queries |
|
Curation Report | Read counters + outcome feedback ( |
Zero Database | Everything persists as Markdown + JSON on your filesystem |
Benchmarks
45.0% overall accuracy on LongMemEval-S (500 questions, full haystacks, hybrid search) with 65.6% evidence recall@8 and zero judge errors — measured end-to-end through the public REST API: ingest → compile → graph → search → answer.
Category | Accuracy | Recall@8 |
single-session-assistant | 96.4% | 98.2% |
single-session-user | 71.4% | 78.6% |
knowledge-update | 60.3% | 75.6% |
temporal-reasoning | 25.6% | 51.1% |
multi-session | 24.8% | 54.1% |
single-session-preference | 23.3% | 63.3% |
Every number is reproducible from a pinned config (dataset SHA-256, models, seed) with one command:
uv run python -m evals.run_longmemeval --config evals/configs/longmemeval-s-hybrid.yamlThe harness (evals/) publishes per-question JSONL traces, separates the judge model from the answer model, uses the official LongMemEval per-type grading prompts, and includes blind human validation of the judge. Full methodology, caveats, and raw results: docs/benchmarks/.
Runs without an LLM
Cortex is deterministic-first: ingestion (MarkItDown conversion), the knowledge graph (wikilinks, tags, derived_from edges), and QMD search all work with zero LLM calls. The LLM is an optional enrichment pass — cross-referencing, tagging, image captioning — not a dependency.
Pick a backend with LLM_BACKEND (env) / CORTEX_LLM_BACKEND (Python):
Backend | What it covers |
| OpenRouter, Azure OpenAI, Ollama, vLLM, LM Studio — anything speaking the OpenAI protocol. Point |
| AWS Bedrock via the standard AWS credential chain (no API key). Requires |
| Explicit zero-LLM mode. Guaranteed to construct no LLM client and make no model calls — suitable for air-gapped deployments. |
Air-gapped example with a local Ollama:
LLM_BACKEND=openai-compatible \
LLM_BASE_URL=http://localhost:11434/v1 \
LLM_API_KEY=ollama \
COMPILER_MODEL=llama3.1 \
./scripts/start.shOr fully deterministic: LLM_BACKEND=none ./scripts/start.sh (no API key needed).
MCP resources (token-light large payloads)
PULSE8.ai Cortex implements the resources-as-tool-inputs pattern recommended by the Microsoft Copilot Studio CAT team: token-heavy tool outputs (large search result sets, full context windows) can be kept server-side and passed between tools as lightweight handles, so the LLM context window stays small.
How it works. Pass as_resource: true to vault_search or vault_context (or ?as_resource=true on GET /api/v1/search). Instead of inlining the full payload, you get a handle:
{
"resource_id": "7f8a3c...",
"resource_uri": "cortex://resource/7f8a3c...",
"summary": { "query": "...", "count": 8, "paths": ["..."] }
}Read it back through any of the three transports:
MCP resources protocol —
resources/readwith thecortex://resource/{id}URI (Claude Desktop, Cursor, Copilot Studio MCP).Fallback tool —
vault_resource_readfor clients that only expose tools to the planning layer (some Copilot Studio configurations).REST —
GET /api/v1/resources/{resource_id}(accepts the bare ID or the full URI).
The store is in-memory, asyncio-safe, TTL-evicted, and LRU-bounded:
Env var | Default | Purpose |
|
| Max age before a stored resource is evicted lazily on read |
|
| LRU cap before oldest entry is dropped |
The same ResourceStore is shared between MCP and REST — produce a handle via MCP, read it back via REST (or vice versa).
Microsoft Copilot Studio setup — agent instructions, tool selection, and the Custom Connector fallback — is documented in docs/copilot-studio.md. No Cortex code change required.
MCP tools
Tool | Description |
| Read a note by path |
| Create or update a note |
| Search the vault (keyword / semantic / hybrid). Supports |
| Create, query, or delete graph edges |
| Build a context window: search → graph traversal → ranked subgraph. Supports |
| Ingest raw content or binary files (supports |
| Compile unprocessed raw sources into wiki Markdown via MarkItDown |
| Submit feedback on vault quality ( |
| List feedback note metadata (paths, tags, status; not full body) |
| Read a server-stored MCP resource by ID (fallback for clients without |
| Trace a note's lineage: provenance, raw sources, and edges labeled extracted / inferred / manual |
| Shortest paths between two notes — "what connects X to Y", every hop typed and origin-labeled |
| Walk everything downstream of a note (change-impact analysis) |
| Explain a note: summary, provenance, sources, links in/out, contradictions |
Architecture
┌──────────────────────────────────────────────┐
│ MCP Client (Claude Desktop, Cursor, etc.) │
└──────────┬───────────────────────────────────┘
│ MCP (HTTP or stdio)
┌──────────▼───────────────────────────────────┐
│ PULSE8.ai Cortex :8420 │
│ ┌──────────────────────────────────────┐ │
│ │ Auth (API Key or Microsoft Entra ID) │ │
│ └──────────────┬───────────────────────┘ │
│ ┌─────────┐ ┌──┴───────┐ ┌──────────────┐ │
│ │ MCP │ │ REST API │ │ Vault Watcher│ │
│ │ /mcp/ │ │ /api/v1/ │ │ (watchfiles) │ │
│ └────┬────┘ └────┬─────┘ └──────┬───────┘ │
│ └───────────┼──────────────┘ │
│ ┌──────▼──────┐ │
│ │ Graph Engine│ │
│ │ + Compiler │ │
│ └─────────────┘ │
└──────────┬───────────────────────────────────┘
│
┌──────────▼───────────────────────────────────┐
│ QMD :3100 │
│ BM25 + vector search, auto-indexes on start │
└──────────┬───────────────────────────────────┘
│
┌──────────▼───────────────────────────────────┐
│ Vault (bind-mounted volume) │
│ wiki/ raw/ agents/ sessions/ daily/ feedback/ │
│ .cortex/ (graph.json, index.md, log.md) │
└──────────────────────────────────────────────┘Vault layout
The vault is a plain directory of Markdown files organised by purpose. Cortex classifies each file into a typed node (NodeType) used by the graph engine and exposed in REST and MCP responses.
Folder |
| Purpose |
|
| Compiled, interlinked knowledge articles |
|
| Unprocessed sources (PDF, DOCX, TXT, …) the compiler reads from |
|
| Agent definitions |
|
| Per-session notes / conversation transcripts |
|
| Daily notes (Obsidian Daily Notes convention) |
|
| Feedback on vault quality ( |
| (skipped) | Cortex internals — |
How classification works
Order of precedence (first match wins):
*Frontmatter
type:*— explicit override always wins (e.g.type: noteinagents/foo.mdresolves toNodeType.NOTE)Folder prefix — files under
raw/ agents/ sessions/ daily/ feedback/inherit the folder's type with no filename suffix needed (e.g.daily/2026-06-10.md→daily)Filename suffix (backward-compatible) —
.agent.md,.session.md,.memory.mdare still honored anywhere (e.g.wiki/legacy.agent.md→agent_def)Default —
NodeType.NOTE
In practice this means you can drop YYYY-MM-DD.md straight into daily/, or an unsuffixed planner.md into agents/, and the graph and API will classify them correctly without any renaming.
Daily activity log
Every vault_write, vault_ingest, and successful compile event (MCP and REST paths) is automatically mirrored into today's UTC daily note at daily/YYYY-MM-DD.md. The file is created on first event of the day and each subsequent event appends a ## [HH:MM] event | summary block plus a [[wiki-stem]] wikilink (so the watcher draws a LINKS_TO edge to the affected note). The format follows the Karpathy log.md greppable-prefix pattern — grep "^## \[" daily/2026-06-10.md gives a clean timeline of the day.
Writes targeting daily/, feedback/, or .cortex/ are deliberately not mirrored (would be self-referential noise). The hidden .cortex/log.md audit log is unaffected and continues to receive every operation.
Bulk ingest
For ingesting many files at once (dozens or hundreds of PDFs, papers, docs), use the one-click shell script instead of feeding them one at a time through MCP. It reads directly from a local directory (recursively, including subfolders) — no wire overhead, no running server required — deduplicates via SHA-256 hashing, compiles with bounded concurrency, and rebuilds the index once at the end. Subpaths are preserved under the vault raw folder (e.g. source/abcde/doc.html → raw/abcde/doc.html).
One-click script (recommended)
# Ingest all files from a directory
./scripts/bulk_ingest.sh ./my-papers/
# Dry-run to preview what would be ingested
./scripts/bulk_ingest.sh ./my-papers/ --dry-run
# Force re-ingest (bypass dedup manifest)
./scripts/bulk_ingest.sh ./my-papers/ --force
# Control LLM concurrency (default: 4)
./scripts/bulk_ingest.sh ./my-papers/ --concurrency 8The script automatically loads your .env for the LLM key and vault path, prints a summary, then runs the full pipeline (copy, compile, reindex). No running Cortex server needed.
Python CLI (direct)
CORTEX_VAULT_PATH=./example_vault uv run cortex-bulk-ingest --source ./my-papers/Inside Docker
# Set INGEST_DIR in .env or export it, then restart
export INGEST_DIR=/path/to/your/papers
docker compose up -d
# Run bulk ingest inside the container
docker exec pulse8-ai-cortex uv run cortex-bulk-ingest --source /ingestVia REST API
For programmatic use without MCP (requires running Cortex server):
curl -X POST http://localhost:8420/api/v1/bulk-ingest \
-H "Content-Type: application/json" \
-H "x-api-key: your-secret-api-key" \
-d '{"source_dir": "/ingest", "concurrency": 4}'Deduplication
The dedup manifest is stored at .cortex/ingest-manifest.json. Files are matched by content hash, not filename — renaming a file won't cause re-ingestion, and the same content under a different name will be skipped.
Configuration
Copy the example and fill in your values:
cp .env.example .envVariable | Required | Default | Description |
| No |
| LLM backend: |
| No | — | OpenRouter (or compatible) API key (for cross-referencing only) |
| No |
| Model for cross-reference detection |
| No |
| LLM API base URL |
| No |
| Path to your vault directory |
| No |
| Path to bulk-ingest source directory (mounted as |
| No |
| Periodic re-index interval (seconds; |
| No |
| Default search mode when unspecified: |
| No |
| TTL for the search-result cache; raise it on read-heavy vaults to skip repeat QMD calls |
| No |
| Per-request search timeout (increase for hybrid on CPU-only hosts) |
| No |
| Embed timeout in ms (increase for CPU-only deployments) |
| No | — | External QMD URL for cortex-only mode (e.g. |
| No |
| Authentication method: |
| No | — | Static API key for |
| No | — | Microsoft Entra ID tenant ID (used when |
| No | — | Microsoft Entra ID app (client) ID |
| No | — | Microsoft Entra ID client secret |
| No |
| Public base URL of the Cortex server (used for OAuth callbacks) |
| No | — | Incoming webhook / Power Automate URL; posts an adaptive card on each new feedback note |
| No | — | Optional public Cortex base URL for a "View in Cortex" link on the Teams card |
OPENROUTER_API_KEY and CORTEX_LLM_API_KEY are accepted as aliases for LLM_API_KEY. Variables above are set in .env (Docker reads them via Compose) and map to the CORTEX_* settings used by the app.
Authentication
Cortex supports two authentication methods that protect both the REST API (/api/v1/) and the MCP endpoint (/mcp/). Set AUTH_METHOD in .env to choose:
| Description |
| Default. All endpoints are open — no authentication required. |
| Static API key. Clients pass |
| Microsoft Entra ID (Azure AD) with OAuth 2.0 + MFA support. |
API Key (AUTH_METHOD=apikey)
The simplest option. Set the method and key in .env:
AUTH_METHOD=apikey
API_KEY=your-secret-api-keyClients pass it via the x-api-key header:
# REST API
curl http://localhost:8420/api/v1/health \
-H "x-api-key: your-secret-api-key"
# MCP (via curl)
curl -X POST http://localhost:8420/mcp/ \
-H "x-api-key: your-secret-api-key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{...}}'No OAuth discovery endpoints are served — no login popups. Requests without a valid key receive a 401.
Microsoft Entra ID (AUTH_METHOD=oidc)
For enterprise environments that require interactive login with MFA support:
AUTH_METHOD=oidc
OIDC_TENANT_ID=your-tenant-id
OIDC_CLIENT_ID=your-client-id
OIDC_CLIENT_SECRET=your-client-secret
OIDC_BASE_URL=http://localhost:8420This enables:
REST API: OAuth 2.0 Authorization Code Flow via
GET /api/v1/login. After login, pass the access token asAuthorization: Bearer <token>. A validx-api-keyheader is also accepted as a fallback whenAPI_KEYis set.MCP endpoint: FastMCP's built-in OIDCProxy handles interactive browser-based login.
Azure AD app registration
To use OIDC, register an app in the Azure Portal:
Go to Azure Active Directory → App registrations → New registration
Set the redirect URI to
http://localhost:8420/api/v1/auth/callback(Web platform)Under Certificates & secrets, create a client secret
Under API permissions, add
openid,profile, andemail(Microsoft Graph → Delegated)Copy the Tenant ID, Client ID, and Client Secret into
.env
MCP client setup
Claude Desktop
An example config is included at [claude_desktop_config.example.json](claude_desktop_config.example.json).
HTTP with API key (recommended) — PULSE8.ai Cortex runs as a persistent server:
{
"mcpServers": {
"cortex": {
"url": "http://localhost:8420/mcp/",
"headers": {
"x-api-key": "your-secret-api-key"
}
}
}
}HTTP without auth — when no authentication is configured:
{
"mcpServers": {
"cortex": {
"url": "http://localhost:8420/mcp/"
}
}
}Stdio — Claude Desktop launches the server on demand (no auth needed):
{
"mcpServers": {
"cortex": {
"command": "uv",
"args": ["run", "--project", "/path/to/cortex", "python", "-m", "cortex.mcp"],
"env": {
"CORTEX_VAULT_PATH": "/path/to/your/vault"
}
}
}
}Cursor
Add to your .cursor/mcp.json:
{
"mcpServers": {
"cortex": {
"url": "http://localhost:8420/mcp/",
"headers": {
"x-api-key": "your-secret-api-key"
}
}
}
}How it works
Watcher and Compiler are independent components:
The Watcher maintains the graph. Any
.mdfile added, modified, or deleted triggers automatic node/edge updates.The Compiler converts raw source files to Markdown using MarkItDown and writes them to
wiki/. Supported formats include PDF, DOCX, PPTX, XLSX, HTML, CSV, JSON, XML, images (EXIF/OCR), and plain text. The LLM is only used for optional cross-reference detection between articles.
They connect indirectly: the compiler writes to wiki/, the watcher picks those up and updates the graph.
Supported file formats
Format | Extensions |
| |
Microsoft Word |
|
Microsoft PowerPoint |
|
Microsoft Excel |
|
HTML |
|
Text-based |
|
Images |
|
Search uses a two-stage pipeline:
QMD performs keyword/semantic search on file contents
PULSE8.ai Cortex enriches results with graph edges (wikilinks, tags, relationships between matched notes)
QMD answers "what's relevant?" — the graph answers "how are these results connected?"
Real-world use cases
Software engineering knowledge base
Architecture Decision Records (ADRs)
Coding standards and conventions
Engineering handbooks and runbooks
Platform and service documentation
Domain-driven design models
Banking & financial services
Product documentation
Regulatory and compliance knowledge
Business domain models
Wealth management expertise
Institutional process know-how
Enterprise knowledge management
Internal wikis
Project documentation and post-mortems
Lessons learned and retrospectives
Organisational memory
Best practices and playbooks
AI agent memory layer
Shared memory across agents
Long-term reasoning context
Knowledge accumulation across sessions
Multi-agent collaboration on a single vault
Roadmap
Near-term
Enhanced knowledge-graph visualisation
Agent activity timeline
Knowledge quality scoring
Additional MCP integrations
Mid-term
Multi-vault federation
Enterprise governance and access policies
Knowledge lineage tracking
Cross-agent learning signals
Long-term
Self-improving organisational memory
Autonomous knowledge curation
Knowledge-driven agent ecosystems
Development
# Install dependencies
uv sync --all-extras
# Run tests
uv run pytest tests/ -v
# Run shell tests (requires bats-core)
bats tests/test_start_sh.bats
# Start PULSE8.ai Cortex locally (without Docker)
CORTEX_MCP_TRANSPORT=http CORTEX_VAULT_PATH=./example_vault uv run python scripts/serve.pyUtility scripts
Script | Description |
| Dev server (HTTP or stdio based on |
| Batch-compile all raw sources |
| Full reindex + graph rebuild |
| One-click bulk ingest from a local directory |
| Python CLI for bulk ingest (called by |
| Lint vault structure |
Data persistence
The vault directory is bind-mounted from your host into the containers. All data lives on your local disk and survives container restarts.
The QMD search index is stored in a Docker volume (qmd-cache). To force a full re-index:
docker compose down -v
./scripts/start.shReleasing
Releases are automated through GitHub Actions. Publishing a GitHub Release triggers three workflows that build and publish everything:
Workflow | Publishes to |
| |
| GitHub Container Registry ( |
| MCP Registry (GitHub OIDC auth) |
To cut a release:
Bump the version in
pyproject.tomlandserver.json(keep them in sync), updateCHANGELOG.md, and commit tomain.# optional: validate the registry manifest locally before tagging mcp-publisher validateCreate the GitHub Release — via the UI (Releases → "Draft a new release" → new tag
vX.Y.Z) or the CLI:git tag vX.Y.Z && git push origin vX.Y.Z gh release create vX.Y.Z --title "vX.Y.Z" --notes-file docs/releases/vX.Y.Z.mdThat's it — the release event fires all three workflows.
publish-mcp.ymlwaits for PyPI to serve the new version (so themcp-nameownership marker in this README is verifiable), then publishes the server via GitHub OIDC underio.github.synpulse8-opensource/*(no token or localmcp-publisherneeded).Verify the registry entry once the workflow finishes:
curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=pulse8-ai-cortex-knowledge-vault"
PyPI versions are immutable — a version number can never be reused, even after deletion. Always increment to a new version; never re-release an existing one.
Community
We believe AI agents need a dedicated knowledge layer — not another document store. If you share that vision:
Star the repository
Open a discussion or issue
Submit a pull request (see Contributing)
Share your use cases — banking, engineering, research, or anything else
Together we can build the knowledge layer for agentic AI.
Contributing
We welcome contributions! Please open an issue to discuss your idea before submitting a pull request.
# Fork and clone the repo
git clone https://github.com/<your-username>/cortex-knowledge-vault.git
cd cortex-knowledge-vault
# Create a branch
git checkout -b feat/my-feature
# Install dev dependencies
uv sync --all-extras
# Make changes, then run tests
uv run pytest tests/ -v
# Submit a pull requestReporting issues
Use GitHub Issues to report bugs or request features.
Acknowledgements
PULSE8.ai Cortex builds on ideas and tools from the open-source community:
LLM Wiki by Andrej Karpathy — the core pattern of an LLM-maintained, persistent knowledge base that compiles and interlinks knowledge incrementally rather than re-discovering it from raw documents on every query. This gist is the direct inspiration for Cortex's architecture.
QMD by Tobi Lütke — the on-device search engine powering all full-text and hybrid search in Cortex. QMD combines BM25, vector search, and LLM re-ranking, all running locally.
MarkItDown by Microsoft — the file-to-Markdown converter powering the Cortex compiler. Converts PDF, Office documents, HTML, images, and more into structured Markdown for ingestion into the vault.
License
This project is licensed under the PULSE8.ai Cortex Open Source License (Apache License 2.0 with additional terms).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceProvides an agent-first note-taking system designed from the ground up for AI collaboration. Organizes your notes as a local vault of ordinary markdown files with semantic note types.Last updated2827810MIT
- Flicense-qualityDmaintenanceBuilds a persistent knowledge graph from notes and conversations, enabling semantic search, entity exploration, and GTD task management from any MCP-compatible AI assistant.Last updated3
- AlicenseAqualityAmaintenanceProvides persistent, searchable structured memory management for AI agents, with keyword matching, bidirectional Zettelkasten sync, and six MCP tools.Last updated6MIT
- Alicense-qualityBmaintenanceProvides persistent, graph-based memory for AI agents via MCP, enabling semantic search, wikilink traversal, reminders, and injection protection.Last updatedApache 2.0
Related MCP Connectors
Token-efficient MCP memory for Markdown vaults. Tiered search, GraphRAG, AI memories.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Shared long-term memory vault for AI agents with 20 MCP tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/synpulse8-opensource/pulse8-ai-cortex-knowledge-vault'
If you have feedback or need assistance with the MCP directory API, please join our Discord server