drio
Open app

Tribal - Knowledge Service

Source

Catalog onlyCatalog onlySTDIO

Overview

Tribal is a Model Context Protocol (MCP) server designed for error knowledge tracking and retrieval, enabling integration with tools like Claude Code and Cline.

To use Tribal, install it via pip or the uv package manager, configure it with Claude Code, and run the server to start tracking programming errors and solutions.

  • Store and retrieve error records with full context - Vector similarity search using ChromaDB - REST API (FastAPI) and native MCP interfaces - JWT authentication with API keys - Local storage (ChromaDB) and AWS integration - Docker-compose deployment - CLI client integration
  1. Tracking programming errors and solutions in real-time.
  2. Searching for similar errors to provide quick solutions.
  3. Building a personalized knowledge base for coding patterns.

Add to your AI client

Use these steps to connect Tribal - Knowledge Service in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "tribal-mcp-server-agentience": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "tribal-mcp-server-agentience": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "tribal-mcp-server-agentience": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "tribal-mcp-server-agentience": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "tribal-mcp-server-agentience": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "tribal-mcp-server-agentience": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tribal-mcp-server-agentience"
      ]
    }
  }
}

FAQ

Can Tribal integrate with other tools?

Yes! Tribal can integrate with tools like Claude Code and Cline.

Is there a Docker deployment option?

Yes! Tribal supports Docker-compose for easy deployment.

How does Tribal ensure data security?

Tribal uses JWT authentication and API keys for secure access.