A graph‑aware exploration engine for AI agents. Neural Voyager connects models to your data layers (databases, files, APIs) via MCP‑compatible tools, builds a living map of knowledge, and plans safe read/write journeys with SoI‑aware guardrails.
Overview
Connect
Bridge LLM agents to SQL/NoSQL, files, and internal APIs using MCP tools and adapters.
Explore
Traverse schemas and documents to build a knowledge graph of entities, relations, and constraints.
Safeguard
Plan queries and mutations with SoI‑aware policies, approvals, and least‑privilege scopes.
Architecture
Pluggable tools, typed plans, and policy‑gated execution.
Capabilities
Discover
Catalog schemas, detect joins, sensitive fields.
Synthesize
Generate queries, datasets, dashboards.
Simulate
Dry‑run mutations with rollback plans.
Protocols
Databases + MCP Protocols IV — DB exploration & ACID‑aware mutations.
{
"name": "db.explorer",
"tools": [
{ "name": "schemas.list" },
{ "name": "tables.describe" },
{ "name": "query.run", "readonly": true },
{ "name": "mutation.plan" }
]
}
type Plan = {
id: string,
soi: 'Private'|'Social'|'Public',
steps: [read|transform|write],
approvals?: { required: boolean, roles: string[] }
}
Security
Private/Social/Public controls applied per data source and action.
Least privilege
Approvals
Observability
Examples
goal: "Explain revenue dip"
plan:
- read: SELECT * FROM revenue WHERE quarter='Q2'
- transform(sql): WITH ...
- synthesize: dashboard
soi: Social
approvals: none
goal: "Fix malformed emails"
plan:
- discover: schema
- simulate: UPDATE ...
- approval: owner + SOC
- write: UPDATE ...
soi: Private
approvals: required
API
HTTP+JSON; MCP manifests for tools.
POST /v1/voyager/plans { goal: "find churn", soi: "Social" }
POST /v1/voyager/plans/{id}/execute { dryRun: true }
Get started
Bring your database and a problem. We'll wire MCP tools, define policies, and run a safe agent pilot in days.