aiqbee
通过 MCP 连接到您的 Aiqbee 知识图。在您的架构、投资组合和数字战略大脑中搜索、创建和链接神经元。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~louisgoodier-aiqbeecURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~louisgoodier-aiqbee/file -o louisgoodier-aiqbee.md# Aiqbee Brain
Connect your OpenClaw assistant to your [Aiqbee](https://aiqbee.com) 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`:
```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).
### Option 2: Via mcporter
If you have mcporter installed, add to `config/mcporter.json`:
```json
{
"mcpServers": {
"aiqbee": {
"baseUrl": "https://mcp.aiqbee.com/mcp",
"description": "Aiqbee knowledge graph"
}
}
}
```
Verify with:
```bash
mcporter list aiqbee
```
## 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 |
|------|-------------|
| `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 |
### Write
| 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 |
## Usage Examples
### Search your knowledge graph
"Search my brain for anything related to cloud migration"
```bash
mcporter call 'aiqbee.aiqbee_search(query: "cloud migration")'
```
### Get full neuron details
"Show me the full details of the API gateway neuron"
```bash
mcporter call 'aiqbee.aiqbee_fetch(neuron_id: "neuron-uuid-here")'
```
### Create a new neuron
First call `aiqbee_get_neuron_types()` to get valid type IDs, then create:
```bash
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."
)'
```
### Link neurons together
Use neuron IDs returned from search or create:
```bash
mcporter call 'aiqbee.aiqbee_create_relationship(
source_neuron_id: "source-uuid",
target_neuron_id: "target-uuid",
link_description: "depends on"
)'
```
### List neuron types
"What types of knowledge are in my brain?"
```bash
mcporter call 'aiqbee.aiqbee_get_neuron_types()'
```
### Brain overview
"Give me an overview of my architecture brain"
```bash
mcporter call 'aiqbee.aiqbee_get_brain_info()'
```
## What is Aiqbee?
[Aiqbee](https://aiqbee.com) 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 Platform](https://app.aiqbee.com)
- [Documentation](https://app.aiqbee.com/help)
- [MCP Server](https://mcp.aiqbee.com/mcp)
- [GitHub](https://github.com/AIQBee/aiqbee-ai)
---
## 中文说明
# Aiqbee Brain
将你的 OpenClaw 助手连接到你的 [Aiqbee](https://aiqbee.com) 知识图谱。通过自然对话,在你的架构、投资组合和数字战略大脑中搜索、创建和链接知识。
## 设置
### 方案 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 knowledge graph"
}
}
}
```
通过以下命令验证:
```bash
mcporter list aiqbee
```
## 身份验证
Aiqbee 使用 OAuth 2.0。首次连接时,你的浏览器将打开以进行登录。无需 API 密钥或环境变量——只需使用你现有的 Aiqbee 账户登录即可。
## 可用工具(12 个)
### 读取
| Tool | Description |
|------|-------------|
| `aiqbee_search` | 在你的知识图谱中搜索神经元 |
| `aiqbee_fetch` | 获取完整的神经元内容和元数据 |
| `aiqbee_get_brain_info` | 获取大脑元数据和统计信息 |
| `aiqbee_get_neuron_types` | 列出所有神经元类型及其计数 |
| `aiqbee_list_neurons` | 带筛选功能的分页神经元列表 |
| `aiqbee_get_relationships` | 获取某个神经元的传入/传出关系 |
### 写入
| Tool | Description |
|------|-------------|
| `aiqbee_create_neuron` | 在你的大脑中创建一个新神经元 |
| `aiqbee_update_neuron` | 更新现有神经元 |
| `aiqbee_delete_neuron` | 删除一个神经元 |
| `aiqbee_create_relationship` | 在两个神经元之间创建链接 |
| `aiqbee_update_relationship` | 更新现有关系 |
| `aiqbee_delete_relationship` | 移除一个关系 |
## 用法示例
### 搜索你的知识图谱
"Search my brain for anything related to cloud migration"
```bash
mcporter call 'aiqbee.aiqbee_search(query: "cloud migration")'
```
### 获取完整的神经元详情
"Show me the full details of the API gateway neuron"
```bash
mcporter call 'aiqbee.aiqbee_fetch(neuron_id: "neuron-uuid-here")'
```
### 创建一个新神经元
先调用 `aiqbee_get_neuron_types()` 获取有效的类型 ID,然后创建:
```bash
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."
)'
```
### 将神经元链接在一起
使用从搜索或创建中返回的神经元 ID:
```bash
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?"
```bash
mcporter call 'aiqbee.aiqbee_get_neuron_types()'
```
### 大脑概览
"Give me an overview of my architecture brain"
```bash
mcporter call 'aiqbee.aiqbee_get_brain_info()'
```
## 什么是 Aiqbee?
[Aiqbee](https://aiqbee.com) 是一个基于 Web 的架构、投资组合和数字战略管理平台。它将知识组织为由突触连接的神经元,构成一个交互式知识图谱。
- **知识图谱** — 将想法组织为由突触连接的神经元
- **架构管理** — 记录和管理企业架构
- **投资组合管理** — 跟踪产品、项目和数字资产
- **AI 驱动的搜索** — 在你的知识库中查找任何内容
- **协作** — 支持基于角色访问的团队工作区
## 资源
- [Aiqbee Platform](https://app.aiqbee.com)
- [Documentation](https://app.aiqbee.com/help)
- [MCP Server](https://mcp.aiqbee.com/mcp)
- [GitHub](https://github.com/AIQBee/aiqbee-ai)