Back to Browse

RE Call MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Agent memory on your own Postgres that flags superseded facts and abstains instead of guessing.

About

Agent memory on your own Postgres that flags superseded facts and abstains instead of guessing.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

PostgreSQL serving DSN for the RE-call memory store.Required

Environment variable: RECALL_SERVING_DSN

Tenant id served by this local stdio server.Optional

Environment variable: RECALL_TENANT

Set to development only for local uncalibrated corpora.Optional

Environment variable: RECALL_TRUST_MODE

The embedder the corpus was BUILT with, for example voyage:voyage-4 or BAAI/bge-large-en-v1.5. It must match: several models emit 1024 dimensions, so a mismatch does not error, it returns a confidently ranked list that means nothing.Optional

Environment variable: RECALL_EMBEDDER

The chunk table inside that database. `recall quickstart` indexes into quickstart_chunks so its sample corpus can never be retrieved beside real memory; `recall setup` uses chunks. The wrong value returns no hits and no error.Optional

Environment variable: RECALL_TABLE

Optional. Serve a subset of the tools: a preset (all, search, read) or explicit names. Every tool definition is re-sent every turn, so serving ones nobody calls costs input tokens on every turn. Unset serves them all.Optional

Environment variable: RECALL_MCP_TOOLS

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-giulioder-re-call": {
      "env": {
        "RECALL_TABLE": "your-recall-table-here",
        "RECALL_TENANT": "your-recall-tenant-here",
        "RECALL_EMBEDDER": "your-recall-embedder-here",
        "RECALL_MCP_TOOLS": "your-recall-mcp-tools-here",
        "RECALL_TRUST_MODE": "your-recall-trust-mode-here",
        "RECALL_SERVING_DSN": "your-recall-serving-dsn-here"
      },
      "args": [
        "recall-mcp",
        "recall-rag"
      ],
      "command": "uvx"
    }
  }
}

Reviews

No reviews yet

Be the first to review this server!