plugins marketplace
← All plugins

swampcastle

v3.0.14

Give your AI a memory — mine projects and conversations into a searchable palace. 19 MCP tools, auto-save hooks, and guided setup.

Codex1 MCP serverstdio

by milla-jovovichMIT0updated 3 weeks ago

Source

git clone https://github.com/dekoza/swampcastle

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

swampcastle/
├── .codex-plugin/plugin.json
└── .mcp.json

MCP servers1

swampcastlestdio
command
python3
args
-m swampcastle.drawbridge

Manifests1

.codex-plugin/plugin.json
{
  "name": "swampcastle",
  "version": "3.0.14",
  "description": "Give your AI a memory — mine projects and conversations into a searchable palace. 19 MCP tools, auto-save hooks, and guided setup.",
  "author": {
    "name": "milla-jovovich"
  },
  "homepage": "https://github.com/dekoza/swampcastle",
  "repository": "https://github.com/dekoza/swampcastle",
  "license": "MIT",
  "keywords": [
    "memory",
    "ai",
    "rag",
    "mcp",
    "chromadb",
    "palace",
    "search"
  ],
  "skills": "./skills/",
  "hooks": "./hooks.json",
  "mcpServers": {
    "swampcastle": {
      "command": "python3",
      "args": [
        "-m",
        "swampcastle.drawbridge"
      ]
    }
  },
  "interface": {
    "displayName": "SwampCastle",
    "shortDescription": "AI memory system for Codex",
    "longDescription": "Give your AI a persistent memory — mine projects and conversations into a searchable palace backed by ChromaDB, with 19 MCP tools, auto-save hooks, and guided skills.",
    "developerName": "milla-jovovich",
    "category": "Coding",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/dekoza/swampcastle",
    "privacyPolicyURL": "https://github.com/dekoza/swampcastle",
    "termsOfServiceURL": "https://github.com/dekoza/swampcastle",
    "defaultPrompt": [
      "Search my memories for recent decisions",
      "Mine this project into my memory palace",
      "Show my palace status and room counts"
    ],
    "brandColor": "#7C3AED"
  }
}