home / mcp / aiqbee-ai mcp server

aiqbee-ai MCP Server

Provides MCP-based access to the Aiqbee knowledge graph, enabling search, read, and write operations across neurons and relationships.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "aiqbee-aiqbee-ai": {
      "url": "https://mcp.aiqbee.com/mcp"
    }
  }
}

You can connect your AI assistants to the Aiqbee knowledge platform using the MCP to search, read, and relate neurons across your architecture and digital strategy. This MCP server enables your tools to query and update your knowledge graph through standard MCP clients, enabling seamless, natural conversations with your AI assistants.

How to use

Connect an MCP-compatible client to the AIQBee MCP endpoint at the provided MCP URL. Once connected, you can search for neurons, fetch full neuron content, create or update neurons and relationships, and explore metadata about your brain. Use natural language prompts to discover existing knowledge, retrieve detailed neuron content, or link related neurons to model complex architectures and strategies.

How to install

Prerequisites: Ensure you have an MCP-compatible client installed on your system or workspace. This guide uses the official MCP URL for AIQBee to configure clients and establish a connection.

1) Use a compatible MCP client and prepare to configure a connection to the AIQBee MCP server.

2) Add the MCP server configuration to your client. Use the JSON snippet below to point your client at the AIQBee MCP endpoint.

{
  "mcpServers": {
    "aiqbee": {
      "url": "https://mcp.aiqbee.com/mcp"
    }
  }
}

Additional configuration and notes

For any MCP-compatible client, the primary endpoint to connect to is the AIQBee MCP server at the URL shown above. If your client requires explicit types or file paths, place the configuration JSON directly in your client’s MCP configuration file following the example above.

Security and access

The MCP connection uses OAuth 2.0 for secure authorization. When you connect, you will be prompted to sign in with your Aiqbee account. Public clients can complete the standard PKCE flow, while confidential clients use a server-side PKCE flow with a callback. No API keys are needed.

Usage examples

  • Search neurons related to a topic: aiqbee_search topic keywords
  • Fetch full neuron content and relationships: aiqbee_fetch NEURON_ID
  • Create a new neuron for a concept, then link it to related neurons: aiqbee_create_neuron and aiqbee_create_relationship

Available tools

aiqbee_search

Search neurons in your knowledge graph to locate relevant concepts, neurons, and relationships.

aiqbee_fetch

Retrieve full neuron content, relationships, and associated files for in-depth review.

aiqbee_get_brain_info

Fetch brain metadata and statistics to understand your knowledge graph scale.

aiqbee_get_neuron_types

List all neuron types with counts to understand data composition.

aiqbee_list_neurons

Paginated listing of neurons with filtering options for efficient discovery.

aiqbee_get_relationships

Get incoming and outgoing relationships for a given neuron.

aiqbee_create_neuron

Create a new neuron within your brain with structured content.

aiqbee_update_neuron

Update properties of an existing neuron.

aiqbee_delete_neuron

Delete a neuron from your brain.

aiqbee_create_relationship

Create a link between two neurons to model connections.

aiqbee_update_relationship

Update an existing relationship between neurons.

aiqbee_delete_relationship

Remove a relationship between neurons.