Baby Skynet MCP Server

Memory Management MCP Server for LLM Brains

Local serverstdioTypeScript

What is the Baby Skynet MCP server?

If you want an AI assistant working directly with Baby Skynet, the baby skynet mcp server is the bridge. Memory Management MCP Server for LLM Brains.

What Baby Skynet does

Ein MCP Server der Claude ein permanentes, durchsuchbares Gedächtnis verleiht - inklusive semantischer Analyse, Multi-Provider LLM Support und Graph-Datenbank Integration.

Tools it exposes

Once connected, the assistant can call these 12 tools directly:

  • Kategorisierung — Strukturierte Organisation von Wissen
  • Volltext-Suche — Finde alte Gespräche und Erkenntnisse
  • Multi — Provider Support** - Ollama (lokal) + Anthropic API
  • MCP — kompatible Umgebung** (Claude Desktop, etc.)
  • save_memory_with_graph — Memory mit automatischer Vernetzung
  • search_memories_with_graph — Erweiterte Suche mit Kontext
  • get_memory_graph_context — Beziehungsnetzwerk anzeigen
  • get_graph_statistics — Netzwerk-Statistiken
  • Import — Pfade entsprechend aktualisiert
  • Voraussetzungen — The Voraussetzungen tool exposed by this server
  • Installation — The Installation tool exposed by this server
  • Konfiguration — The Konfiguration tool exposed by this server

Installing the baby skynet mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 2 environment variables: ANTHROPIC_API_KEY, NEO4J_URL. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. Baby Skynet sits in that group, and the shape of its toolset — Kategorisierung, Volltext-Suche, Multi among others — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 12 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Baby Skynet.
  • Maintained by spie-mkroehn, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the baby skynet mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
KategorisierungStrukturierte Organisation von Wissen
Volltext-SucheFinde alte Gespräche und Erkenntnisse
MultiProvider Support** - Ollama (lokal) + Anthropic API
MCPkompatible Umgebung** (Claude Desktop, etc.)
save_memory_with_graphMemory mit automatischer Vernetzung
search_memories_with_graphErweiterte Suche mit Kontext
get_memory_graph_contextBeziehungsnetzwerk anzeigen
get_graph_statisticsNetzwerk-Statistiken
ImportPfade entsprechend aktualisiert
VoraussetzungenThe Voraussetzungen tool exposed by this server.
InstallationThe Installation tool exposed by this server.
KonfigurationThe Konfiguration tool exposed by this server.

How to install the Baby Skynet MCP server

{
  "mcpServers": {
    "baby-skynet": {
      "command": "node",
      "args": [
        "/pfad/zu/baby-skynet/build/index.js", 
        "--db-path", "/pfad/zu/claude_memory.db",
        "--brain-model", "claude-3-5-haiku-latest"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
NEO4J_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Baby Skynet to Kategorisierung.
  • Use Baby Skynet to Volltext-Suche.
  • Use Baby Skynet to Multi.

Frequently asked questions

It connects Baby Skynet to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (Kategorisierung, Volltext-Suche, Multi, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Baby Skynet directly.