THE NERVOUS SYSTEM
FOR PASSIVE AI.
Powering the next generation of seamless, context-aware artificial intelligence. Nerve is the foundational infrastructure for autonomous data synthesis.
MCP standardizes what agents can use. NCP standardizes what wakes them up.
PASSIVE VS. ACTIVE AI.
Existing assistant workflows are mostly active: a user asks, then AI answers. Passive AI needs a different loop: a system senses, evaluates, routes, wakes an agent, then acts or notifies within a policy boundary.
THE NCP ROLE
NCP does not replace MCP. It standardizes the trigger envelope that tells a passive runtime why an event matters, who owns it, how urgent it is, what context is referenced, and what actions are allowed.
Manual prompt
Remind me if the time change is going to affect anything this week.
NCP trigger
Upcoming time change may affect wake times, school dropoff, recurring meetings, and automated routines.
- 01 // calendar
- 02 // calendar.time_change
- 03 // score relevance
- 04 // route to family_logistics_agent
- 05 // daily_digest
{
"ncp_version": "0.1",
"type": "trigger",
"source": {
"system": "calendar",
"event_type": "calendar.time_change"
},
"domain": "calendar",
"subject": "Daylight saving schedule shift",
"summary": "Upcoming time change may affect wake times, school dropoff, recurring meetings, and automated routines.",
"severity": "medium",
"sensitivity": "family",
"recommended_route": {
"agent": "family_logistics_agent"
},
"delivery_policy": {
"urgency": "daily_digest"
}
}THE NERVE
ROUTING LOOP
NerveEndings gather signals from the world, NerveSynapse receives external events, NerveBridge converts legacy alerts into NCP triggers, and NerveOS System decides whether to wake an agent, route to a digest, notify, act, or suppress.
NerveEndings
NerveOS System
policy + relevance + route selection
Reflex outputs
WAKE
EQUIP
ACT
The NerveOS System wakes agents, routes context, and enforces policy as the agentic market evolves around it.
NCP wakes. MCP equips. NerveOS decides.
NCP standard
NCP trigger
standard event shape NerveOS receives
inside NerveOS
Reflex Engine
score urgency, relevance, sensitivity, policy
agent market
Specialist agent
security_agent, finance_agent, family_logistics_agent
MCP tool layer
MCP tools
GitHub, calendar, billing, docs, local systems
inside NerveOS
Approval gate
NerveOS enforces what can happen next
{
"trigger": "security.secret_exposed",
"wake": "security_agent",
"context_refs": ["mcp://github/security-alerts/123"],
"allowed_without_approval": ["summarize_alert", "draft_rotation_steps"],
"requires_approval": ["revoke_key", "rotate_secret"]
}NERVE
SYSTEM
Protocol, runtime, synapse gateway, adapters, NerveSignals, and policy layer.
NCP
Nerve Context Protocol
An open JSON trigger format for alerts, notifications, events, workflows, signals, and system changes.
- source
- severity
- confidence
- context_refs
NerveOS
NerveOS System
The runtime layer that evaluates NCP triggers, applies policy, routes work, suppresses noise, and wakes agents when needed.
- policy
- routing
- relevance
NerveSynapse
Signal intake gateway
Secure endpoint where external systems hand raw alerts or NCP-native triggers to a user's NerveOS System.
- verify source
- normalize event
- route workspace
NerveBridge
Legacy alert conversion
Conversion layer inside NerveSynapse that maps legacy alert formats into validated NCP triggers.
- firebase alerts
- github alerts
- billing events
NerveEndings
Generate signal adapters
Developer tool for generating app-specific NCP signal adapters, schemas, fixtures, and NerveBridge mappings from existing apps, APIs, logs, and webhooks.
- adapter generation
- schema fixtures
- route hints
REAL NCP SIGNAL AREAS
API spend spike
Route usage anomalies to a cost agent with evidence, projected cost, approval boundaries, and same-hour delivery.
- api.usage.spike
- financial
- cost_guardian
Compromised key
Keep secrets behind context references while interrupting the right security workflow immediately.
- security.secret_exposed
- secret
- security_agent
Family or field logistics
Turn schedule conflicts and readiness windows into structured triggers with owners, urgency, and permitted actions.
- calendar.conflict
- family/private
- route-aware
STANDARDIZE
WHAT WAKES AI.
NCP is deployment-agnostic: local-first NerveOS System, private cloud NerveOS System, hosted NerveOS System, or a hybrid relay model. Sensitive payloads should stay behind context references instead of being copied into events.
NerveBridge supports
api_usage_spike // github_secret_alert // bill_due // calendar_conflict // weather_window
{
"ncp_version": "0.1",
"type": "trigger",
"source": {
"system": "github",
"event_type": "security.secret_scanning_alert"
},
"severity": "critical",
"sensitivity": "secret",
"context_refs": [
{
"type": "mcp",
"ref": "mcp://github/security-alerts/123",
"sensitivity": "secret"
}
],
"recommended_route": {
"agent": "security_agent"
},
"delivery_policy": {
"urgency": "interrupt_now"
}
}