mcp-project-context-router
Enables publishing analyst packs and project context to Confluence.
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., "@mcp-project-context-routerCreate a context pack for the payment feature"
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.
Project Context Router
A local-first CLI and Model Context Protocol server that gives coding agents structured project memory, task contracts, compact context packs, backlog workflows, and verification evidence.
The router keeps durable knowledge in reviewable Markdown and YAML inside the consumer repository. A disposable SQLite index makes retrieval fast without turning an external service into the source of truth.
Status: active development. The current package is
vincenzo-mcp-context@0.4.0, requires Node.js 22.13 or newer, and is distributed from source or a versioned tarball. It is not currently published to an npm registry.
Why use it?
Keep project memory versioned beside the code that it describes.
Give agents a focused context pack instead of an unbounded repository dump.
Validate and confirm a Task Contract before implementation begins.
Search existing capabilities before adding duplicate code.
Track backlog state, dependencies, decisions, and verification evidence.
Expose the same workflow through a human-friendly CLI and MCP tools.
Keep generated drafts and indexes out of version control and package artifacts.
Related MCP server: knitbrain
Quick start
Install directly from GitHub in the repository that should own the project context:
npm install --save-dev --save-exact github:ukolov-dev/mcp-project-context-router
npx project-context init --name "Example Project" --module app:src
npx project-context index
npx project-context doctor --jsoninit is non-destructive: it does not overwrite an existing configuration.
Review .project-context/project.yaml after generation and replace the example
modules, source globs, playbooks, and verification commands with real project
values.
A typical agent workflow then looks like this:
npx project-context validate-task "Add CSV export" --mode feature
npx project-context pack "Add CSV export" --workflow standard --explain
npx project-context reuse-scan "CSV export"
npx project-context verify-task "CSV export"Run npx project-context --help for the complete CLI surface.
Connect your coding agent
The package includes client-specific setup guides and copy-ready configuration templates:
Client | Setup guide | Configuration template |
Codex desktop, CLI, and IDE | ||
OpenCode stable | ||
OpenCode V2 preview |
All three configurations start the same local stdio MCP server from the consumer
repository. They contain no credentials or workstation-specific absolute paths.
Codex uses .codex/config.toml; OpenCode uses opencode.json at the repository
root. The two OpenCode schemas are intentionally separate because stable and V2
currently use different MCP nesting and enablement fields.
The server supports scoped tool profiles:
Profile | Intended use |
| Task contracts, context packs, reuse scans, verification, refactor review, and finalization |
|
|
|
|
|
|
| The complete compatibility surface |
core is the default. The legacy PPM_CONTEXT_TOOL_PROFILE variable remains
supported for compatibility.
How data is laid out
.project-context/
├── project.yaml # routing, modules, commands, and project identity
├── active/ # reviewed, durable project records
├── drafts/ # reviewable generated proposals (ignored)
├── indexes/ # rebuildable SQLite/cache data (ignored)
└── templates/ # Task Contract and Verification Record templatesProject data belongs to the consumer repository, not to this package. The configuration routes queries to modules and playbooks; the index adds fast retrieval; the CLI and MCP server apply the same workflow and repository-boundary checks.
Safety model
Repository-boundary and symlink-escape checks reject paths outside the project.
Secret-like values are redacted from generated excerpts.
Credentials are read from environment variables or supported native credential stores and are never written into exported project context.
Indexes, drafts, trash, build outputs, and local environment files are ignored.
The npm package allowlist excludes source-project records, credentials, source TypeScript, tests, and generated SQLite databases.
Network integrations such as Confluence and Context Hub are optional and require explicit project configuration and credentials.
See SECURITY.md for vulnerability reporting.
Develop locally
git clone https://github.com/ukolov-dev/mcp-project-context-router.git
cd mcp-project-context-router
npm ci
npm run build
npm test
npm run package:check
node bin/project-context doctor --jsonTo exercise the installable artifact locally:
mkdir -p artifacts
npm pack --pack-destination ./artifactsThe tarball contains compiled runtime code, launchers, hooks, credential helper
scripts, installation guides, consumer templates, and this README. It excludes
.project-context, .codex, tests, source TypeScript, generated indexes, and
node_modules.
Contributing
Read CONTRIBUTING.md before opening a change. The required
handoff checks are npm run build, npm test, npm run package:check, and
node bin/project-context doctor --json.
License
No open-source license has been granted yet. The package is marked UNLICENSED;
public availability of the source does not grant permission to copy, modify, or
redistribute it.
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
- AlicenseBqualityCmaintenancePortable, auditable, local-first MCP memory for MCP-compatible AI agents and coding workflows. It keeps durable project memory outside the model runtime, compresses continuity into smaller working packs, and carries forward operational state so agents can resume with less repetition.2834Apache 2.0
- AlicenseAqualityAmaintenanceLocal-first MCP server that gives any AI coding agent per-project memory, workflow intelligence, and always-on, lossless token & context optimization.37313MIT
- Flicense-qualityFmaintenanceA local-first, team-ready MCP server providing durable memory for LLM-based coding workflows with multiple storage backends and fast search.4
- AlicenseBqualityBmaintenanceLocal-first memory server for AI coding agents that stores work sessions, tasks, and durable memories in Markdown files, exposed through MCP tools for session management and memory retrieval.10151MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
The project brain for AI coding agents — memory, decisions, sprints, knowledge base via MCP.
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/ukolov-dev/mcp-project-context-router'
If you have feedback or need assistance with the MCP directory API, please join our Discord server