Skip to content

Cloud MCP Server & Persistent Memory

Universal Remote Model Context Protocol (MCP) Server for AI Coding Agents.
Connect Google Antigravity, Cursor, Claude Code, and Windsurf directly to the TidyFactor Cloud Cognitive Server.


🏛️ Overview

The TidyFactor Cloud MCP Server provides persistent, cross-agent cognitive memory and architectural context retrieval via the Model Context Protocol (MCP).

┌─────────────────────────────────────────────────────────────┐
│ 🤖 AI Coding Agents (Cursor, Antigravity, Claude, Windsurf) │
└─────────────────────────────────────────────────────────────┘
                    SSE Stream & JSON-RPC 2.0
┌─────────────────────────────────────────────────────────────┐
│ 🌐 TidyFactor Cloud Gateway (https://tidyfactor.com)        │
│  - SSE Endpoint:  GET  /api/mcp/sse                         │
│  - Post Endpoint: POST /api/mcp/messages                    │
└─────────────────────────────────────────────────────────────┘
               Physical Database-per-Tenant
┌─────────────────────────────────────────────────────────────┐
│ 🧠 Isolated Private SQLite Brain ({tenant_id}_brain.sqlite) │
│  - 768-dim Vector Embeddings Index                          │
│  - Contextual Decision Layer (CDL) & Firewalls              │
│  - Zero Data Bleed & 100% Data Sovereignty                  │
└─────────────────────────────────────────────────────────────┘

🚀 Quick Setup by IDE

1. Google Antigravity IDE (mcp_config.json)

{
  "mcpServers": {
    "tidyfactor-cloud": {
      "url": "https://tidyfactor.com/api/mcp/sse",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

2. Cursor IDE (.cursor/mcp.json)

{
  "mcpServers": {
    "tidyfactor": {
      "url": "https://tidyfactor.com/api/mcp/sse?token=YOUR_API_TOKEN"
    }
  }
}

3. Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "tidyfactor": {
      "url": "https://tidyfactor.com/api/mcp/sse",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

🛠️ Available MCP Tools

  • search_knowledge_base: Semantic vector search across official skills and private tenant brain memory.
  • doctor: Health and latency diagnostic for remote MCP connectivity.
  • get_skill_manifest: Complete metadata, commands, and rules for a specified skill.
  • generate_audio_overview: 2-host conversational podcast script synthesizing knowledge items (NotebookLM style).
  • export_tenant_brain: Direct export of the private .sqlite database file for 100% data portability.

© 2026 TidyFactor. Distributed under Apache License 2.0.