PluginBench
MCP Server
Active
MIT

io.github.DanceNitra/inspeximus MCP Server

io.github.DanceNitra/inspeximus

What is the io.github.DanceNitra/inspeximus MCP server?

Self-correcting agent memory + MCP server: recall, supersede/revert/review corrections, erasure.

How to install io.github.DanceNitra/inspeximus

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • INSPEXIMUS_PATH

    Path to the JSON memory file the server persists to (defaults to ./inspeximus_memory.json).

  • INSPEXIMUS_ECHO_GUARD

    1 (default) blocks a restated retired value from resurrecting a corrected fact; 0 = legacy keyed supersession.

  • INSPEXIMUS_EMBED_URL

    Optional OpenAI-compatible /embeddings endpoint for SEMANTIC recall (e.g. http://localhost:11434/v1/embeddings for local Ollama). Unset = deterministic lexical recall.

  • INSPEXIMUS_EMBED_MODEL

    Embedding model id used with INSPEXIMUS_EMBED_URL (default: text-embedding-3-small; for Ollama use e.g. nomic-embed-text).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "inspeximus": {
      "command": "uvx",
      "args": [
        "inspeximus"
      ],
      "env": {
        "INSPEXIMUS_PATH": "<YOUR_INSPEXIMUS_PATH>",
        "INSPEXIMUS_ECHO_GUARD": "<YOUR_INSPEXIMUS_ECHO_GUARD>",
        "INSPEXIMUS_EMBED_URL": "<YOUR_INSPEXIMUS_EMBED_URL>",
        "INSPEXIMUS_EMBED_MODEL": "<YOUR_INSPEXIMUS_EMBED_MODEL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "inspeximus": {
      "command": "uvx",
      "args": [
        "inspeximus"
      ],
      "env": {
        "INSPEXIMUS_PATH": "<YOUR_INSPEXIMUS_PATH>",
        "INSPEXIMUS_ECHO_GUARD": "<YOUR_INSPEXIMUS_ECHO_GUARD>",
        "INSPEXIMUS_EMBED_URL": "<YOUR_INSPEXIMUS_EMBED_URL>",
        "INSPEXIMUS_EMBED_MODEL": "<YOUR_INSPEXIMUS_EMBED_MODEL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "inspeximus": {
      "command": "uvx",
      "args": [
        "inspeximus"
      ],
      "env": {
        "INSPEXIMUS_PATH": "<YOUR_INSPEXIMUS_PATH>",
        "INSPEXIMUS_ECHO_GUARD": "<YOUR_INSPEXIMUS_ECHO_GUARD>",
        "INSPEXIMUS_EMBED_URL": "<YOUR_INSPEXIMUS_EMBED_URL>",
        "INSPEXIMUS_EMBED_MODEL": "<YOUR_INSPEXIMUS_EMBED_MODEL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "inspeximus": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "inspeximus"
      ],
      "env": {
        "INSPEXIMUS_PATH": "<YOUR_INSPEXIMUS_PATH>",
        "INSPEXIMUS_ECHO_GUARD": "<YOUR_INSPEXIMUS_ECHO_GUARD>",
        "INSPEXIMUS_EMBED_URL": "<YOUR_INSPEXIMUS_EMBED_URL>",
        "INSPEXIMUS_EMBED_MODEL": "<YOUR_INSPEXIMUS_EMBED_MODEL>"
      }
    }
  }
}
Claude Code
claude mcp add inspeximus --env INSPEXIMUS_PATH=<YOUR_INSPEXIMUS_PATH> --env INSPEXIMUS_ECHO_GUARD=<YOUR_INSPEXIMUS_ECHO_GUARD> --env INSPEXIMUS_EMBED_URL=<YOUR_INSPEXIMUS_EMBED_URL> --env INSPEXIMUS_EMBED_MODEL=<YOUR_INSPEXIMUS_EMBED_MODEL> -- uvx inspeximus

Related MCP servers

Self-correcting agent memory + MCP server: recall, supersede/revert/review corrections, erasure.

5
Python
MIT
View repository →