一键导入
aiqbee
Connect to your Aiqbee knowledge graph via MCP. Search, create, and link neurons across your architecture, portfolio, and digital strategy brains.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Connect to your Aiqbee knowledge graph via MCP. Search, create, and link neurons across your architecture, portfolio, and digital strategy brains.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | aiqbee |
| description | Connect to your Aiqbee knowledge graph via MCP. Search, create, and link neurons across your architecture, portfolio, and digital strategy brains. |
| homepage | https://aiqbee.com |
| metadata | {"clawdbot":{"emoji":"🧠"}} |
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.
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 | Permission |
|---|---|---|
aiqbee_list_brains | List all brains you have access to | Read |
aiqbee_get_brain_info | Get brain metadata and statistics | Read |
aiqbee_edit_is_allowed | Check if MCP editing is enabled for a brain | Read |
aiqbee_list_brain_templates | List available brain templates for brain creation | Read |
aiqbee_create_brain | Create a new brain (optionally from a template) | — |
aiqbee_update_brain | Update brain name, description, or settings | Owner |
aiqbee_delete_brain | Delete a brain permanently | Owner |
| Tool | Description | Permission |
|---|---|---|
aiqbee_search | Search neurons in your knowledge graph | Read |
aiqbee_fetch | Get full neuron content and metadata | Read |
aiqbee_list_neurons | Paginated neuron listing with filtering | Read |
| Tool | Description | Permission |
|---|---|---|
aiqbee_list_neuron_types | List all neuron types in a brain | Read |
aiqbee_add_neuron_type | Create a new neuron type | Owner |
aiqbee_edit_neuron_type | Update a neuron type's properties | Owner |
aiqbee_delete_neuron_type | Delete a neuron type (with optional neuron reassignment) | Owner |
| Tool | Description | Permission |
|---|---|---|
aiqbee_create_neuron | Create a new neuron in your brain | ReadWrite |
aiqbee_update_neuron | Update an existing neuron | ReadWrite |
aiqbee_delete_neuron | Delete a neuron | ReadWrite |
| Tool | Description | Permission |
|---|---|---|
aiqbee_get_relationships | Get incoming/outgoing relationships for a neuron | Read |
aiqbee_create_relationship | Create a link between two neurons | ReadWrite |
aiqbee_update_relationship | Update an existing relationship | ReadWrite |
aiqbee_delete_relationship | Remove a relationship | ReadWrite |
| Tool | Description | Permission |
|---|---|---|
aiqbee_list_users | List users with access to a brain | Read |
aiqbee_grant_access | Grant a user access to a brain | Owner |
aiqbee_revoke_access | Revoke a user's access to a brain | Owner |
aiqbee_batch_update_access | Replace all access permissions in one operation | Owner |
"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()'
"Show me all my brains"
mcporter call 'aiqbee.aiqbee_list_brains()'
"What brain templates are available?"
mcporter call 'aiqbee.aiqbee_list_brain_templates()'
"Create a new brain for our cloud migration project"
mcporter call 'aiqbee.aiqbee_create_brain(name: "Cloud Migration", description: "Architecture decisions for cloud migration")'
Create from a template (get template ID from aiqbee_list_brain_templates first):
mcporter call 'aiqbee.aiqbee_create_brain(name: "Cloud Migration", brain_template_id: "template-uuid-here")'
"Who has access to this brain? Grant read access to alice@example.com"
mcporter call 'aiqbee.aiqbee_list_users()'
mcporter call 'aiqbee.aiqbee_grant_access(email: "alice@example.com", access_level: "ReadWrite")'
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.