aiqbee_list_brain_templates
Lists 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_search
Searches 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_fetch
Retrieves complete neuron data including content and metadata. Use get_relationships to fetch synapse/relationship data separately.
aiqbee_list_neurons
Returns a paginated list of neurons, optionally filtered by type. Includes pagination information (total count, page number, page size, has more).
aiqbee_get_relationships
Returns 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_types
Returns a list of neuron types with their IDs, names, descriptions, and whether they represent files.
aiqbee_add_neuron_type
Creates a new neuron type in the brain. Requires Owner access and MCP editing to be enabled.
aiqbee_edit_neuron_type
Updates 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_type
Deletes 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_neuron
Creates a new neuron with the specified type, name, and content. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_update_neuron
Updates the type, name, and/or content of an existing neuron. Requires ReadWrite access and MCP editing to be enabled for the brain.
aiqbee_delete_neuron
Deletes 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_relationship
Creates 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_relationship
Updates 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_relationship
Deletes 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_users
Lists 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_access
Grants 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_access
Revokes 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_access
Replaces 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.