{
  "markdown": "# Aiqbee AI\n\nConnect AI assistants to your [Aiqbee](https://aiqbee.com) brains via the [Model Context Protocol](https://modelcontextprotocol.io/).\n\nSearch, create, and link knowledge across your architecture, portfolio, and digital strategy - all through natural conversation with your AI assistant.\n\n---\n\n## Supported Clients\n\n| AI Tool | Integration | Setup |\n|---------|-------------|-------|\n| **Claude Code** | Plugin | `claude plugin install AIQBee/aiqbee-ai` |\n| **Claude Desktop** | MCP Config | [JSON config below](#claude-desktop) |\n| **Cursor** | MCP Config | [JSON config below](#cursor) |\n| **VS Code / Copilot** | MCP Config | [JSON config below](#vs-code) |\n| **Gemini CLI** | Extension | `gemini extensions install https://github.com/AIQBee/aiqbee-ai` |\n| **ChatGPT** | MCP Config | [JSON config below](#other-mcp-clients) |\n| **Windsurf** | MCP Config | [JSON config below](#other-mcp-clients) |\n| **Any stdio client** | npx | `npx -y @aiqbee/mcp` |\n\n---\n\n## Quick Start\n\n### Claude Code\n\n```bash\nclaude plugin install AIQBee/aiqbee-ai\n```\n\nRestart Claude Code after installation.\n\n### Gemini CLI\n\n```bash\ngemini extensions install https://github.com/AIQBee/aiqbee-ai\n```\n\nRestart Gemini CLI and authenticate when prompted.\n\n### Claude Desktop\n\nAdd to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"aiqbee\": {\n      \"url\": \"https://mcp.aiqbee.com/mcp\"\n    }\n  }\n}\n```\n\n### Cursor\n\nAdd to `.cursor/mcp.json` in your project:\n\n```json\n{\n  \"mcpServers\": {\n    \"aiqbee\": {\n      \"url\": \"https://mcp.aiqbee.com/mcp\"\n    }\n  }\n}\n```\n\n### VS Code\n\nAdd to your `settings.json`:\n\n```json\n{\n  \"mcp\": {\n    \"servers\": {\n      \"aiqbee\": {\n        \"type\": \"sse\",\n        \"url\": \"https://mcp.aiqbee.com/mcp\"\n      }\n    }\n  }\n}\n```\n\n### npx (stdio clients)\n\nFor MCP clients that only support stdio transport:\n\n```json\n{\n  \"mcpServers\": {\n    \"aiqbee\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@aiqbee/mcp\"]\n    }\n  }\n}\n```\n\n### Other MCP Clients\n\nFor any MCP-compatible client, point it at:\n\n```\nhttps://mcp.aiqbee.com/mcp\n```\n\n---\n\n## Authentication\n\nAiqbee uses **OAuth 2.0** with secure authorization. When you first connect, your MCP client will prompt you to sign in. The server supports:\n\n- **Public clients** (Claude Desktop, Cursor): Standard PKCE flow\n- **Confidential clients** (ChatGPT): Server-side PKCE with callback\n\nNo API keys needed - just sign in with your existing Aiqbee account.\n\n---\n\n## Available Tools (25)\n\n### Brain Discovery & Management\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_list_brains` | List all brains you have access to | Read |\n| `aiqbee_get_brain_info` | Get brain metadata and statistics | Read |\n| `aiqbee_edit_is_allowed` | Check if MCP editing is enabled for a brain | Read |\n| `aiqbee_list_brain_templates` | List available brain templates for brain creation | Read |\n| `aiqbee_create_brain` | Create a new brain (optionally from a template) | — |\n| `aiqbee_update_brain` | Update brain name, description, or settings | Owner |\n| `aiqbee_delete_brain` | Delete a brain permanently | Owner |\n\n### Search & Retrieval\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_search` | Search neurons in your knowledge graph | Read |\n| `aiqbee_fetch` | Get full neuron content and metadata | Read |\n| `aiqbee_list_neurons` | Paginated neuron listing with filtering | Read |\n\n### Neuron Types\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_list_neuron_types` | List all neuron types in a brain | Read |\n| `aiqbee_add_neuron_type` | Create a new neuron type | Owner |\n| `aiqbee_edit_neuron_type` | Update a neuron type's properties | Owner |\n| `aiqbee_delete_neuron_type` | Delete a neuron type (with optional neuron reassignment) | Owner |\n\n### Neurons\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_create_neuron` | Create a new neuron in your brain | ReadWrite |\n| `aiqbee_update_neuron` | Update an existing neuron | ReadWrite |\n| `aiqbee_delete_neuron` | Delete a neuron | ReadWrite |\n\n### Relationships\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_get_relationships` | Get incoming/outgoing relationships for a neuron | Read |\n| `aiqbee_create_relationship` | Create a link between two neurons | ReadWrite |\n| `aiqbee_update_relationship` | Update an existing relationship | ReadWrite |\n| `aiqbee_delete_relationship` | Remove a relationship | ReadWrite |\n\n### Access Control\n\n| Tool | Description | Permission |\n|------|-------------|------------|\n| `aiqbee_list_users` | List users with access to a brain | Read |\n| `aiqbee_grant_access` | Grant a user access to a brain | Owner |\n| `aiqbee_revoke_access` | Revoke a user's access to a brain | Owner |\n| `aiqbee_batch_update_access` | Replace all access permissions in one operation | Owner |\n\n---\n\n## Example Prompts\n\nOnce connected, try asking your AI assistant:\n\n- *\"List all my brains\"*\n- *\"Show me the available brain templates\"*\n- *\"Create a new brain called 'Cloud Architecture' using the Enterprise Architecture template\"*\n- *\"Search my brain for anything related to cloud migration\"*\n- *\"Show me all the architecture decisions we've made\"*\n- *\"Create a new neuron about our API gateway strategy\"*\n- *\"Link the microservices neuron to the deployment pipeline neuron\"*\n- *\"What are the relationships for the data platform neuron?\"*\n- *\"Who has access to this brain? Grant read access to alice@example.com\"*\n- *\"Summarize the key concepts in my digital strategy brain\"*\n\n---\n\n## What is Aiqbee?\n\n[Aiqbee](https://aiqbee.com) is a web-based architecture, portfolio, and digital strategy management platform.\n\n- **Knowledge Graphs** - Organize ideas as \"neurons\" connected by \"synapses\"\n- **Architecture Management** - Document and manage enterprise architecture\n- **Portfolio Management** - Track products, projects, and digital assets\n- **AI-Powered Search** - Find anything across your knowledge base\n- **Collaboration** - Team workspaces with role-based access\n- **Microsoft 365 Integration** - Works with your existing tools\n\n---\n\n## Links\n\n- **Platform**: https://app.aiqbee.com\n- **Documentation**: https://app.aiqbee.com/help\n- **Privacy & Trust**: https://app.aiqbee.com/trust\n- **Support**: https://app.aiqbee.com/help\n- **MCP Server**: https://mcp.aiqbee.com/mcp\n\n---\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n",
  "bytes": 6450,
  "sha": "17861d2ef3b231fa84fd7685835c5589e68094fc9d13d775192733276470d973",
  "repo_slug": "aiqbee/aiqbee-ai",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_aiqbee_aiqbee_ai_c14e7964/readme"
}