aiqbee

Connect AI assistants to your Aiqbee brains via the Model Context Protocol.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные

Что умеет

  • Aiqbee List Brains: Lists all brains the authenticated user can access. Returns brain IDs, names, descriptions, access levels, and MCP URLs. Use this to discover available brains before calling other
  • Aiqbee Get Brain Info: Returns brain metadata including name, description, whether it's personal, and if MCP editing is allowed.
  • Aiqbee Edit Is Allowed: Checks if MCP editing (create, update, delete) is allowed for a brain. Checks both the user's permission level AND the brain's AllowMCPEditing setting.

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Connect AI assistants to your Aiqbee brains via the Model Context Protocol.

Search, create, and link knowledge across your architecture, portfolio, and digital strategy - all through natural conversation with your AI assistant.

Список инструментов сервера (25)

Технические названия из tools/list. Нужны только разработчикам.

aiqbee_list_brainsLists all brains the authenticated user can access. Returns brain IDs, names, descriptions, access levels, and MCP URLs. Use this to discover available brains before calling other tools. Only available on the brain-agnostic /mcp endpoint.
aiqbee_get_brain_infoReturns brain metadata including name, description, whether it's personal, and if MCP editing is allowed.
aiqbee_edit_is_allowedChecks if MCP editing (create, update, delete) is allowed for a brain. Checks both the user's permission level AND the brain's AllowMCPEditing setting.
aiqbee_create_brainCreates a new brain. The authenticated user becomes the owner. Personal brains are only visible to the owner; organization brains are visible to all tenant users.
aiqbee_update_brainUpdates a brain's settings. Only provided fields are changed. Requires Owner access.
aiqbee_delete_brainDeletes a brain permanently. WARNING: This action cannot be undone. The brain and ALL its neurons, relationships, and access permissions will be permanently deleted. Requires Owner access.
aiqbee_list_brain_templatesLists available brain templates that can be used when creating a new brain. Templates define pre-configured neuron types. Pass the template id as brain_template_id to aiqbee_create_brain.
aiqbee_searchSearches the brain's knowledge graph for neurons matching the query. Returns neuron ID, title, snippet, type, and URL for each match. When include_related is True (default), also includes neurons connected via synapses.
aiqbee_fetchRetrieves complete neuron data including content and metadata. Use get_relationships to fetch synapse/relationship data separately.
aiqbee_list_neuronsReturns a paginated list of neurons, optionally filtered by type. Includes pagination information (total count, page number, page size, has more).
aiqbee_get_relationshipsReturns all relationships (synapses) for a specific neuron, including incoming and outgoing connections. Each synapse includes the related neuron ID, name, type, and link description.
aiqbee_list_neuron_typesReturns a list of neuron types with their IDs, names, descriptions, and whether they represent files.
aiqbee_add_neuron_typeCreates a new neuron type in the brain. Requires Owner access and MCP editing to be enabled.
aiqbee_edit_neuron_typeUpdates a neuron type's name, description, or file type flag. Only provided fields are changed. Requires Owner access and MCP editing to be enabled.
aiqbee_delete_neuron_typeDeletes a neuron type. WARNING: This action cannot be undone. If neurons exist of this type, provide reassign_to_neuron_type_id to move them to another type. Requires Owner access and MCP editing to be enabled.
aiqbee_create_neuronCreates a new neuron with the specified type, name, and content. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_update_neuronUpdates the type, name, and/or content of an existing neuron. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_delete_neuronDeletes a neuron from a brain. WARNING: This action cannot be undone. The neuron and all its relationships will be permanently deleted. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_create_relationshipCreates a new directional link (synapse) from source neuron to target neuron. Both neurons must exist in the same brain. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_update_relationshipUpdates the source neuron, target neuron, and/or description of an existing relationship (synapse). Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_delete_relationshipDeletes a relationship (synapse) between neurons. WARNING: This action cannot be undone. The relationship will be permanently deleted. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_list_usersLists all users with access to a brain, including their email, name, access level, and when access was granted. Any user with access to the brain can call this.
aiqbee_grant_accessGrants access to a user for a brain by email. The user must exist in your organization. If the user already has access, their level is updated. Requires Owner access.
aiqbee_revoke_accessRevokes a user's access to a brain by email. WARNING: This action cannot be undone. Cannot revoke the brain creator's access. Requires Owner access.
aiqbee_batch_update_accessReplaces all access permissions for a brain in one operation. WARNING: Users not in the entries list will have their access REVOKED (except the brain creator). Requires Owner access.