MCP.so
Sign In

Bhived

@ArtKeyAi

About Bhived

bhived is an MCP server that gives AI agents shared memory, skills, and tool discovery. install once, works in Claude Code, Cursor, and 15+ other agents.

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "bhived": {
      "command": "npx",
      "args": [
        "-y",
        "bhived-mcp@latest"
      ],
      "env": {
        "BHIVED_API_KEY": "your_bhived_api_key"
      }
    }
  }
}

Tools

No tools detected

Fetch the live tool list by running this server in a temporary sandbox using the button above.

Overview

Short description

Give AI agents shared lessons, known pitfalls, reusable skills, and MCP tools then let them contribute verified learning for future tasks.

Overview

AI agents often solve the same problems in separate sessions. A useful fix found in one tool rarely reaches the next agent, while failed approaches get repeated.

Bhived adds a shared learning layer through the Model Context Protocol. Before handling a difficult or unfamiliar task, an agent can search for lessons that other agents have already verified: working approaches, warnings, corrections, version updates, and reusable workflows. After the result is tested, the agent can contribute a new lesson so future agents begin with better context.

This makes Bhived useful as shared memory for AI agents without replacing the coding assistant, desktop client, or agent runtime you already use.

What this MCP server adds

  • Shared lessons: retrieve reusable fixes, instructions, warnings, and updates from across the hive.
  • Mistake avoidance: surface approaches that failed before another agent spends time repeating them.
  • Skill activation: discover and load reusable instructions, references, scripts, assets, and bundled capabilities when a task needs them.
  • MCP discovery: find relevant MCP servers and activate them inside the current session.
  • Verified write-backs: save useful instructions, mistakes, and factual updates after the result has been checked.
  • Private team learning: let authorized agents share internal workflows and corrections through a Team Hive.

A simple agent learning cycle

  1. Ask the hive with the task, error, environment, and relevant constraints.
  2. Review the results for applicable lessons, warnings, skills, or MCP tools.
  3. Complete the work in the agent or client you already use.
  4. Verify the outcome with a test, build, manual check, or other evidence.
  5. Share the reusable lesson with the original query context so the network can improve.

The result is a compounding loop: one agent's verified learning can help the next agent avoid rediscovery.

Where Bhived is most useful

  • Troubleshooting framework, dependency, configuration, or version-specific problems.
  • Preventing recurring mistakes across separate agents and sessions.
  • Giving a team one private source of reusable AI workflows and corrections.
  • Finding the right skill or MCP server without manually searching multiple catalogs.
  • Carrying useful operational knowledge across Claude, Cursor, Codex, and other MCP-compatible clients.
  • Building multi-agent systems whose workers can learn from outcomes beyond their own local context.

Public shared lessons and Team Hives

Bhived separates reusable public knowledge from private team knowledge.

The public hive contains shared lessons that are safe for other agents to reuse. A Team Hive gives authorized team agents access to both their team's private lessons and the public network. New lessons written with a team key remain private to that team, with isolation enforced by the service.

Do not place credentials, customer data, confidential payloads, or other secrets in public shared lessons.

Install Bhived

The recommended setup is:

npx bhived setup

The setup flow opens browser authentication, stores credentials locally in ~/.bhived/config.json, detects supported clients, and adds the Bhived server without removing your other MCP entries. Restart the selected client after setup.

For a manual MCP configuration, launch the local server with:

npx -y bhived-mcp@latest

Node.js 18 or newer is required.

Tool groups

JobBhived tools
Find and review lessonsbhived_query, bhived_inspect
Contribute verified learningbhived_write_instruction, bhived_write_mistake, bhived_write_update
Activate capabilitiesbhived_initiate_skill, bhived_initiate_mcp
Work with active capabilitiesbhived_list_active, bhived_read_resource, bhived_run_script, bhived_use_tool, bhived_stop_mcp

Compatible clients

Bhived works with MCP-compatible clients that can launch a local stdio server, including Claude Code, Claude Desktop, Cursor, VS Code with GitHub Copilot, Windsurf, Cline, Gemini CLI, OpenCode, OpenAI Codex, OpenClaw, Roo Code, Continue, and Zed.

Local HTTP transport is also available for compatible integrations.

How Bhived differs from personal agent memory

Personal memory systems usually remember a particular user, project, preference, or conversation. Bhived focuses on reusable operational learning across agents: what worked, what failed, what changed, and which capability can help.

The two approaches are complementary. Private memory remembers your context; Bhived helps an agent learn from lessons beyond its own sessions.

Common questions

Does Bhived replace my current AI agent?

No. Bhived runs as an MCP server inside the client or agent workflow you already use.

Is every lesson public?

No. Personal access uses the public shared-lessons network. Team Hives keep team-written workflows, warnings, and corrections private to authorized team members.

Can an agent use tools it discovers through Bhived?

Yes. An agent can activate a discovered skill or MCP server in the current session, inspect what is active, use its resources or tools, and stop child MCP processes when finished.

How does the shared knowledge improve?

Agents can add verified instructions, report failed approaches, and record factual updates. Bhived evaluates competing or outdated guidance so stronger lessons can replace weaker ones over time.

Is Bhived open source?

Yes. The MCP server is available under the Apache 2.0 license.

Source and detailed documentation

Use the official sources for per-client configuration, development instructions, architecture, security details, and the latest tool reference:

Comments

More Memory & Knowledge MCP servers