hAIveMind MCP Server

hAIveMind MCP Server

Enables AI agents to share knowledge, coordinate tasks, and maintain persistent memory across distributed infrastructure with secure vaults and 130+ MCP tools.

Category
访问服务器

README

hAIveMind MCP Server

A distributed multi-agent DevOps memory system implementing the Model Context Protocol (MCP). Enables Claude and other AI agents to share knowledge, coordinate tasks, and maintain persistent memory across distributed infrastructure.

Features

  • Persistent Memory Storage: ChromaDB-backed vector storage with Redis caching
  • Multi-Agent Coordination: Register agents, delegate tasks, and share discoveries across the collective
  • Teams & Vaults: Secure collaborative workspaces with encrypted secret management
  • Zero-Knowledge Vault Sharing: X25519 key exchange for secure vault key distribution
  • Skills.sh Integration: Discover and install reusable AI agent capabilities from skills.sh
  • Confidentiality Controls: PII/confidential data protection with sync/broadcast filtering
  • Token-Optimized Format: 60-80% token reduction with v2 format system
  • Remote Access: HTTP/SSE server for MCP clients with HTTPS/Tailscale Serve support
  • Agent Authentication: Firebase-backed identity with pre-auth keys and capabilities
  • 130+ MCP Tools: Comprehensive DevOps tooling for infrastructure, deployment, and monitoring
  • Configuration Management: Drift detection, snapshots, and intelligent alerting
  • Disaster Recovery: Automated backups, failover, and chaos engineering support

Version

Current Release: v2.3.0

Recent Changes

  • v2.3.0: Secure admin bootstrap system with vault-based credentials, hardcoded password removal, complete API v1 endpoints for vault operations
  • v2.2.0: Skills.sh integration, zero-knowledge vault sharing, HTTPS/Tailscale Serve support, agent authentication system
  • v2.1.5: Fixed PII protection MCP tool exposure, comprehensive README update
  • v2.1.4: PII/Confidential memory protection system
  • v2.1.3: Agents directory support in vault system
  • v2.1.2: Full toolset enabled in remote server
  • v2.1.1: Vault sync tools restored

Installation

# Clone the repository
git clone <repository-url>
cd haivemind-mcp-server

# Create virtual environment
python -m venv venv
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

# Start the remote HTTP/SSE server (recommended)
python src/remote_mcp_server.py

# Or start the local MCP server (stdio)
python src/memory_server.py

Configuration

Claude Code Integration

Add to ~/.claude/mcp.json:

{
  "mcpServers": {
    "haivemind": {
      "command": "mcp-client-sse",
      "args": ["http://localhost:8900/sse"],
      "env": {"HTTP_TIMEOUT": "30000"}
    }
  }
}

Server Configuration

Copy config/config.example.json to config/config.json:

{
  "storage": {
    "chromadb": {"path": "/data/chroma/"}
  },
  "server": {"port": 8900}
}

MCP Tools (126 Total)

Core Memory Tools

Tool Description
store_memory Store memories with confidentiality controls
retrieve_memory Get specific memory by ID
update_memory_confidentiality Upgrade memory protection level (one-way)
search_memories Full-text and semantic search with filtering
get_recent_memories Time-windowed retrieval
get_memory_stats Statistics and counts
get_project_memories Project-scoped memories
import_conversation Bulk import conversations

Confidentiality Levels

Level Sync Broadcast Search Description
normal Yes Yes Full Default - full visibility
internal No Limited Full No external machine sync
confidential No No Local Local machine only
pii No No Local Audit logged, blocked from all distribution

Agent Coordination

Tool Description
register_agent Register with the collective
get_agent_roster List all active agents
delegate_task Assign work to specialists
query_agent_knowledge Query specific agent expertise
broadcast_discovery Share findings with all agents
get_broadcasts Retrieve recent broadcasts

Teams & Vaults

Tool Description
create_team / list_teams Collaborative workspaces
create_vault / store_in_vault Encrypted secret storage
retrieve_from_vault Decrypt and retrieve secrets
share_vault Grant access to users/teams
vault_audit_log Security audit trail

Infrastructure Management

Tool Description
track_infrastructure_state Record infrastructure snapshots
record_incident Log incidents with correlation
generate_runbook Create reusable procedures
sync_ssh_config Distribute SSH configurations
sync_infrastructure_config Sync any infra config

Configuration Management

Tool Description
create_config_snapshot Capture configuration state
detect_config_drift Intelligent drift detection
get_config_history Configuration change history
create_intelligent_config_alert Smart alerting rules
get_drift_trend_analysis Predictive drift analysis
diff_config_files Compare configurations

Backup & Recovery

Tool Description
backup_all_configs Full configuration backup
backup_agent_state Agent state preservation
backup_project Project-level backups
restore_from_backup Safe restoration
verify_backup Backup integrity check
scheduled_backup Automated backup scheduling

Deployment Pipeline

Tool Description
create_deployment_pipeline Define CI/CD pipelines
execute_deployment Run deployments
rollback_deployment Automated rollback
deployment_approval_workflow Approval gates
backup_before_deployment Pre-deploy snapshots

Service Discovery

Tool Description
discover_services Automatic service discovery
register_service Manual service registration
service_dependency_map Dependency visualization
health_check_all Comprehensive health checks

Ticket Management

Tool Description
create_ticket Create work tickets
get_ticket / list_tickets Retrieve tickets
update_ticket_status Status updates
search_tickets Search and filter
get_my_tickets Personal ticket list
add_ticket_comment Add comments
get_ticket_metrics Analytics

Skills.sh Integration

Tool Description
search_skills_sh Search skills.sh directory for AI capabilities
install_skill_from_skills_sh Install skill with vault sync
list_installed_skills List local and vault skills
sync_skill_to_vault Share skill with team via vault
recommend_skills Context-aware skill recommendations

External Integrations

Tool Description
fetch_from_confluence Import Confluence docs
fetch_from_jira Import Jira issues
sync_external_knowledge Sync all external sources
upload_playbook Store Ansible/Terraform

Project Management

Tool Description
create_project / list_projects Project CRUD
switch_project_context Context switching
project_health_check Health analysis
backup_project / restore_project Project backup/restore

Usage Examples

Store Memory with PII Protection

# Normal memory (synced across network)
store_memory(content="API endpoint documented", category="infrastructure")

# PII memory (local only, never synced)
store_memory(
    content="Customer SSN: xxx-xx-xxxx",
    category="security",
    confidentiality_level="pii"
)

Upgrade Confidentiality (One-Way)

# Mark existing memory as confidential
update_memory_confidentiality(
    memory_id="abc123",
    confidentiality_level="confidential",
    reason="Contains sensitive customer data"
)

Agent Coordination

# Register as a specialist
register_agent(role="elasticsearch_ops", description="ES cluster management")

# Delegate work
delegate_task(
    task_description="Optimize slow queries",
    required_capabilities=["elasticsearch_ops"]
)

# Share discoveries
broadcast_discovery(
    message="Found memory leak in scraper",
    category="infrastructure",
    severity="warning"
)

Skills.sh Integration

# Search for skills
search_skills_sh(query="kubernetes deployment")

# Install a skill and sync to vault
install_skill_from_skills_sh(
    skill_id="vercel/next-learn",
    target_tool="claude",
    sync_to_vault=True
)

# List all installed skills
list_installed_skills()

# Get context-aware recommendations
recommend_skills(context="Building a React app with authentication")

Configuration Drift Detection

# Create snapshot
create_config_snapshot(
    system_id="elastic1",
    config_type="elasticsearch",
    config_content="<yaml>",
    file_path="/etc/elasticsearch/elasticsearch.yml"
)

# Detect drift
detect_config_drift(system_id="elastic1", threshold=0.8)

# Get trend analysis
get_drift_trend_analysis(system_id="elastic1", days_back=7)

Architecture

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│  Claude Code    │────▶│  Remote Server  │────▶│    ChromaDB     │
│  (MCP Client)   │ SSE │  (port 8900)    │     │  (Vector Store) │
└─────────────────┘     └────────┬────────┘     └─────────────────┘
                                 │
                    ┌────────────┼────────────┐
                    ▼            ▼            ▼
              ┌──────────┐ ┌──────────┐ ┌──────────┐
              │  Redis   │ │  Sync    │ │  Teams   │
              │ (Cache)  │ │ Service  │ │ & Vaults │
              └──────────┘ └──────────┘ └──────────┘

Services

Service Port Purpose
Remote Server 8900 HTTP/SSE for MCP clients
Sync Service 8899 Machine-to-machine sync
Memory Server stdio Local MCP integration

Systemd Installation

# Install all services
sudo bash services/install-services.sh

# Or individual services
sudo systemctl enable haivemind-remote-mcp
sudo systemctl start haivemind-remote-mcp

Requirements

  • Python 3.10+
  • Redis server
  • ChromaDB

API Endpoints

Endpoint Method Description
/health GET Service health check
/sse GET SSE stream for MCP
/mcp POST Streamable HTTP for MCP
/api/tools GET List available tools

Security

  • Confidentiality Levels: PII/confidential data never leaves local machine
  • Vault Encryption: XOR-based encryption (upgradeable to AES-GCM)
  • Audit Logging: All vault access logged with actor/reason
  • JWT Authentication: API endpoint protection
  • Tailscale Integration: Secure machine-to-machine communication

License

MIT License

Contributing

Contributions welcome. Please ensure:

  • No PII or internal infrastructure details in commits
  • Tests pass for confidentiality filtering
  • Documentation updated for new features

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选