The shared memory layer
for every AI agent you use.
Every AI tool you use is isolated from the others. Neural Fabric is where structured knowledge lives: decisions, constraints, entities, written once, queryable by any agent you connect, in any tool, at any time.
Who connects to what
Any MCP-compatible AI connects to one Fabric server. All agents read and write to the same knowledge graph: Claude, ChatGPT, Gemini, or any open-source model.
One agent writes. Every agent knows
One agent captures a decision. A completely different agent, in a different tool, on a different day, queries it immediately: the source, the confidence, the timestamp.
Connect any MCP client
Neural Fabric is a standard MCP server. If your tool speaks MCP, it connects. Choose your path.
"mcpServers": {
"qorbit-fabric": {
"url": "https://your-fabric-url/api/mcp/fabric",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
client = MCPClient(
url="https://your-fabric-url/api/mcp/fabric",
headers={"Authorization": "Bearer YOUR_TOKEN"}
)
tools = client.list_tools()
const transport = new StreamableHTTPClientTransport(
new URL("https://your-fabric-url/api/mcp/fabric"),
{ headers: { "Authorization": `Bearer YOUR_TOKEN` } }
);
Connect OpenClaw
Give your agent memory that survives compaction. Add the Fabric as an MCP server and your OpenClaw agent gets 9 tools for persistent, structured knowledge.
"mcpServers": {
"qorbit": {
"type": "http",
"url": "https://your-fabric-url/api/mcp/fabric",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
9 tools. Every client.
Connect any MCP client and these 9 tools appear automatically. Same tools in Claude.ai, ChatGPT, Cursor, OpenClaw, or any MCP-compatible agent.