aiqbeeConnect to your Aiqbee knowledge graph via MCP. Search, create, and link neurons across your architecture, portfolio, and digital strategy brains.
Install via ClawdBot CLI:
clawdbot install louisgoodier/aiqbeeConnect your OpenClaw assistant to your Aiqbee knowledge graph. Search, create, and link knowledge across your architecture, portfolio, and digital strategy brains through natural conversation.
Add to your openclaw.json:
{
"mcpServers": {
"aiqbee": {
"transport": "streamable-http",
"url": "https://mcp.aiqbee.com/mcp"
}
}
}
Sign in with your Aiqbee account when prompted (OAuth 2.0, opens browser).
If you have mcporter installed, add to config/mcporter.json:
{
"mcpServers": {
"aiqbee": {
"baseUrl": "https://mcp.aiqbee.com/mcp",
"description": "Aiqbee knowledge graph"
}
}
}
Verify with:
mcporter list aiqbee
Aiqbee uses OAuth 2.0. On first connection, your browser will open for sign-in. No API keys or environment variables needed β just sign in with your existing Aiqbee account.
| Tool | Description |
|------|-------------|
| aiqbee_search | Search neurons in your knowledge graph |
| aiqbee_fetch | Get full neuron content and metadata |
| aiqbee_get_brain_info | Get brain metadata and statistics |
| aiqbee_get_neuron_types | List all neuron types with counts |
| aiqbee_list_neurons | Paginated neuron listing with filtering |
| aiqbee_get_relationships | Get incoming/outgoing relationships for a neuron |
| Tool | Description |
|------|-------------|
| aiqbee_create_neuron | Create a new neuron in your brain |
| aiqbee_update_neuron | Update an existing neuron |
| aiqbee_delete_neuron | Delete a neuron |
| aiqbee_create_relationship | Create a link between two neurons |
| aiqbee_update_relationship | Update an existing relationship |
| aiqbee_delete_relationship | Remove a relationship |
"Search my brain for anything related to cloud migration"
mcporter call 'aiqbee.aiqbee_search(query: "cloud migration")'
"Show me the full details of the API gateway neuron"
mcporter call 'aiqbee.aiqbee_fetch(neuron_id: "neuron-uuid-here")'
First call aiqbee_get_neuron_types() to get valid type IDs, then create:
mcporter call 'aiqbee.aiqbee_create_neuron(
neuron_type_id: "type-uuid-from-get-neuron-types",
name: "gRPC for internal services",
content: "We decided to use gRPC for all internal service-to-service communication."
)'
Use neuron IDs returned from search or create:
mcporter call 'aiqbee.aiqbee_create_relationship(
source_neuron_id: "source-uuid",
target_neuron_id: "target-uuid",
link_description: "depends on"
)'
"What types of knowledge are in my brain?"
mcporter call 'aiqbee.aiqbee_get_neuron_types()'
"Give me an overview of my architecture brain"
mcporter call 'aiqbee.aiqbee_get_brain_info()'
Aiqbee is a web-based architecture, portfolio, and digital strategy management platform. It organises knowledge as neurons connected by synapses in an interactive knowledge graph.
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection