novyx-mcp
OfficialClick 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., "@novyx-mcpdraft_memory: Deploy fails if REDIS_URL unset in staging"
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.
novyx-mcp
Governed actions, shared memory, audit, and rollback for MCP clients such as Claude Desktop, Cursor, and Claude Code. Works locally with zero config (SQLite) for memory and policy-evaluation workflows, or connects to Novyx Cloud for policy-as-code, approval workflows, governance dashboards, Runtime v2, threat intelligence, auto-defense, replay, and eval baselines. Every Novyx customer makes every other customer safer.
Install
pip install novyx-mcpConfiguration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"novyx-memory": {
"command": "python",
"args": ["-m", "novyx_mcp"],
"env": {
"NOVYX_API_KEY": "nram_your_key_here"
}
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"novyx-memory": {
"command": "python",
"args": ["-m", "novyx_mcp"],
"env": {
"NOVYX_API_KEY": "nram_your_key_here"
}
}
}
}Claude Code
claude mcp add novyx-memory -- python -m novyx_mcpSet the NOVYX_API_KEY environment variable before starting Claude Code. Omit it to use local mode (SQLite, zero config).
CLAUDE.md Integration
After installing and configuring the MCP server above, add this to your project's CLAUDE.md so Claude Code uses Novyx automatically:
## Shared Memory (Novyx MCP)
You have access to novyx-mcp tools for shared memory, knowledge graph, audit,
rollback, replay, and context spaces. Use them when relevant. Store decisions
and status at the end of tasks. Check for context from other agents before
starting new work.This turns isolated Claude Code sessions into a coordinated team — each session stores what it learned and checks what other sessions have done before starting work.
Canonical Workflow: Draft, Review, Merge
This is the highest-signal Novyx workflow for coding agents:
The agent learns something important, but uses
draft_memory(..., branch_id="feature-x")instead of writing directly.Review the whole branch with
memory_branch("feature-x").Use
draft_diffwhen one draft needs a closer look.Merge the whole branch with
merge_branch("feature-x"), or reject it withreject_branch("feature-x").
Example:
draft_memory(
observation="Deploys fail if REDIS_URL is unset in staging",
tags=["ops", "staging"],
importance=8,
branch_id="staging-fixes"
)
memory_branch("staging-fixes")
draft_diff("drf_abc123")
merge_branch("staging-fixes")This keeps agent memory reviewable instead of letting every session write directly into permanent state.
Available Tools
Memory-only tools work in local SQLite mode (zero config, no API key). Cloud-only governance and runtime tools require a Novyx API key.
Core Memory (20 tools)
Store, recall, supersede, and audit individual memories.
Tool | Description |
| Store a memory observation with tags, importance, context, TTL |
| Semantic search using natural language |
| List stored memories with optional tag filtering |
| Total count, average importance, conflict count |
| Health score, stale memory count, contradiction count |
| Delete a memory by UUID |
| Replace a memory with a new version, preserving history |
| Create a directed link between two memories |
| Remove a link between memories |
| Retrieve all links for a memory |
| Add a knowledge graph triple (subject → predicate → object) |
| Query knowledge graph triples with filters |
| Remove a knowledge graph triple |
| Knowledge graph entity CRUD |
| List edges between memories or entities |
| Get the cryptographic audit trail |
| Export and verify the audit chain |
Memory Drafts & Branches (8 tools)
Stage memory changes for review before committing.
Tool | Description |
| Create a reviewable draft before writing to canonical memory |
| List open, merged, or rejected drafts |
| Show field-level changes before merging a draft |
| Merge or reject an individual draft |
| Review a whole branch/session of drafts at once |
| Merge or reject every open draft in a branch |
Rollback (3 tools)
Time-travel restore — undo agent mistakes.
Tool | Description |
| Rollback memory to a point in time (supports dry run) |
| Preview what a rollback would change |
| List all prior rollback operations |
Context Spaces (10 tools)
Multi-agent collaboration — shared memory with fine-grained permissions.
Tool | Description |
| Context space CRUD |
| List spaces you own or have access to |
| Search or list memories within a space |
| Share a space by email with permission level |
| List spaces shared with you |
| Accept invites or revoke access |
| Get the current context state for a space |
Novyx Control — Governance (10 tools)
Policy-as-code, approval workflows, and governed actions. New in Phase 1-5 (v2.5.0).
Tool | Description | Tier |
| Create a custom YAML policy with regex rules and severities | Starter+ |
| List all active policies (built-in + custom) | All |
| Disable a custom policy | Starter+ |
| Check the current Control policy profile | All |
| Submit an action for policy evaluation | All |
| Get the status of a submitted action | All |
| List recent governed actions | All |
| Get the full causal chain for an action | All |
| List actions awaiting human approval | All |
| Approve or deny a pending action | All |
Runtime v2 — Agent Orchestration (25 tools)
First-class agents, missions, capability packs, checkpoints, and human interventions.
Category | Tools |
Agents |
|
Missions |
|
Capabilities |
|
Checkpoints |
|
Interventions |
|
Capabilities require Starter+. Checkpoints require Pro+. Interventions require Enterprise.
Threat Intelligence (11 tools — Pro+)
Detect, signature, and correlate adversarial activity across agents.
Tool | Description |
| Subscribe to the threat intelligence feed |
| Log a threat observation |
| Match an event against known signatures |
| Create or query a threat signature |
| Apply a mitigation for a known threat |
| Trending threats over time |
| Aggregate threat statistics |
| Correlate a single event across the chain |
| Detect coordinated multi-agent attack patterns |
| Detect long-running threat campaigns |
| Find signatures related to a given threat |
Auto-Defense (7 tools — Pro+)
Deploy and tune automated defensive rules.
Tool | Description |
| Deploy a new defense rule |
| List all active defenses |
| Remove a defense rule |
| Get AI-recommended defenses for current threats |
| Measure how effective a defense has been |
| Log a successful block by a defense |
| Aggregate defense performance stats |
Replay (7 tools — Pro+)
Time-travel debugging — inspect how memory changed over time.
Tool | Description |
| Chronological timeline of memory operations |
| Reconstruct memory state at a point in time |
| Trace the full lifecycle of a single memory |
| Compare memory state between two points |
| Replay a single memory's history |
| Show how a memory drifted over time |
| Replay a recall query as it would have answered then |
Eval (7 tools)
Memory health evaluation and CI/CD gates.
Tool | Description | Tier |
| Run a full memory health evaluation | All |
| Get historical eval scores | All |
| Detect drift since the last baseline | All |
| Pass/fail gate for CI/CD pipelines | Pro+ |
| Baseline CRUD |
Cortex (5 tools — Pro+)
Autonomous memory intelligence — consolidation, reinforcement, and insights.
Tool | Description |
| Check cortex configuration and last run stats |
| Get/update cortex configuration |
| Trigger a cortex cycle (consolidation + reinforcement) |
| Get AI-generated insights from memory patterns (Enterprise) |
Traces (4 tools)
Sentinel trace logging for full agent step audits.
Tool | Description |
| Start a new trace |
| Append a step to a trace |
| Finalize a trace |
| Cryptographically verify a trace |
Operational (3 tools)
Tool | Description |
| Aggregated stats — usage, pressure, governance counts |
| Status of any active streams |
| Introspect the MCP tool surface — status, category, description per tool (new in 2.7.0) |
Available Resources
URI | Description |
| List all stored memories |
| Get a specific memory by UUID |
| Memory statistics |
| Usage and plan information |
| List all context spaces |
| Get a specific context space |
Available Prompts
Prompt | Description |
| Recall relevant memories and format them as context (takes a |
| List all memories for a session (takes a |
| Recall memories from a specific context space (takes |
Get an API Key
Sign up at novyxlabs.com to get your API key. The free tier includes 5,000 memories and 5,000 API calls per month, including the draft-review-merge workflow.
License
MIT - Copyright 2026 Novyx Labs
This server cannot be installed
Maintenance
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/novyxlabs/novyx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server