Aiqbee Brain
Connect your OpenClaw assistant to your Aiqbee knowledge graph. Search, create, and link knowledge across your architecture, portfolio, and digital strategy brains through natural conversation.
Setup
Option 1: Direct MCP Configuration (Recommended)
Add to your openclaw.json:
CODEBLOCK0
Sign in with your Aiqbee account when prompted (OAuth 2.0, opens browser).
Option 2: Via mcporter
If you have mcporter installed, add to config/mcporter.json:
CODEBLOCK1
Verify with:
CODEBLOCK2
Authentication
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.
Available Tools (12)
Read
| Tool | Description |
|---|
| INLINECODE2 | Search neurons in your knowledge graph |
| INLINECODE3 |
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 |
Write
| Tool | Description |
|---|
| INLINECODE8 | Create a new neuron in your brain |
| INLINECODE9 |
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 |
Usage Examples
Search your knowledge graph
"Search my brain for anything related to cloud migration"
CODEBLOCK3
Get full neuron details
"Show me the full details of the API gateway neuron"
CODEBLOCK4
Create a new neuron
First call aiqbee_get_neuron_types() to get valid type IDs, then create:
CODEBLOCK5
Link neurons together
Use neuron IDs returned from search or create:
CODEBLOCK6
List neuron types
"What types of knowledge are in my brain?"
CODEBLOCK7
Brain overview
"Give me an overview of my architecture brain"
CODEBLOCK8
What is Aiqbee?
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.
- - Knowledge Graphs — Organise ideas as neurons connected by synapses
- Architecture Management — Document and manage enterprise architecture
- Portfolio Management — Track products, projects, and digital assets
- AI-Powered Search — Find anything across your knowledge base
- Collaboration — Team workspaces with role-based access
Resources
Aiqbee 大脑
将您的 OpenClaw 助手连接到您的 Aiqbee 知识图谱。通过自然对话,在您的架构、投资组合和数字战略大脑中搜索、创建和链接知识。
设置
选项 1:直接 MCP 配置(推荐)
添加到您的 openclaw.json:
json
{
mcpServers: {
aiqbee: {
transport: streamable-http,
url: https://mcp.aiqbee.com/mcp
}
}
}
根据提示使用您的 Aiqbee 账户登录(OAuth 2.0,会打开浏览器)。
选项 2:通过 mcporter
如果您已安装 mcporter,请添加到 config/mcporter.json:
json
{
mcpServers: {
aiqbee: {
baseUrl: https://mcp.aiqbee.com/mcp,
description: Aiqbee 知识图谱
}
}
}
使用以下命令验证:
bash
mcporter list aiqbee
身份验证
Aiqbee 使用 OAuth 2.0。首次连接时,您的浏览器将打开以进行登录。无需 API 密钥或环境变量——只需使用您现有的 Aiqbee 账户登录即可。
可用工具(12 个)
读取
| 工具 | 描述 |
|---|
| aiqbeesearch | 在您的知识图谱中搜索神经元 |
| aiqbeefetch |
获取完整的神经元内容和元数据 |
| aiqbee
getbrain_info | 获取大脑元数据和统计信息 |
| aiqbee
getneuron_types | 列出所有神经元类型及其数量 |
| aiqbee
listneurons | 分页列出神经元并支持筛选 |
| aiqbee
getrelationships | 获取神经元的传入/传出关系 |
写入
| 工具 | 描述 |
|---|
| aiqbeecreateneuron | 在大脑中创建新神经元 |
| aiqbeeupdateneuron |
更新现有神经元 |
| aiqbee
deleteneuron | 删除神经元 |
| aiqbee
createrelationship | 在两个神经元之间创建链接 |
| aiqbee
updaterelationship | 更新现有关系 |
| aiqbee
deleterelationship | 移除关系 |
使用示例
搜索您的知识图谱
在我的大脑中搜索与云迁移相关的任何内容
bash
mcporter call aiqbee.aiqbee_search(query: cloud migration)
获取完整的神经元详情
显示 API 网关神经元的完整详情
bash
mcporter call aiqbee.aiqbeefetch(neuronid: neuron-uuid-here)
创建新神经元
首先调用 aiqbeegetneuron_types() 获取有效的类型 ID,然后创建:
bash
mcporter call aiqbee.aiqbeecreateneuron(
neurontypeid: type-uuid-from-get-neuron-types,
name: gRPC for internal services,
content: We decided to use gRPC for all internal service-to-service communication.
)
链接神经元
使用搜索或创建返回的神经元 ID:
bash
mcporter call aiqbee.aiqbeecreaterelationship(
sourceneuronid: source-uuid,
targetneuronid: target-uuid,
link_description: depends on
)
列出神经元类型
我的大脑中有哪些类型的知识?
bash
mcporter call aiqbee.aiqbeegetneuron_types()
大脑概览
给我一个架构大脑的概览
bash
mcporter call aiqbee.aiqbeegetbrain_info()
什么是 Aiqbee?
Aiqbee 是一个基于 Web 的架构、投资组合和数字战略管理平台。它将知识组织为通过突触连接的神经元,形成交互式知识图谱。
- - 知识图谱 — 将想法组织为通过突触连接的神经元
- 架构管理 — 记录和管理企业架构
- 投资组合管理 — 跟踪产品、项目和数字资产
- AI 驱动搜索 — 在知识库中查找任何内容
- 协作 — 支持基于角色的访问的团队工作空间
资源