1. Conduid
  2. Data
  3. Mantora
MCP server · Data

Mantora

The open-source run log for MCP agents. Get a shareable report to verify and reproduce what the agent did — plus a protective mode for common dangerous SQL.

59Fair

Scored 3 months ago · breakdown

About Mantora

Mantora is an MCP server published by josephwibowo in the Data category: the open-source run log for MCP agents. Get a shareable report to verify and reproduce what the agent did — plus a protective mode for common dangerous SQL. It has been installed 0 times through Conduid.

The repository has 5 stars and 1 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mantora

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Mantora

Powered by Claude · Grounded in docs

I know everything about Mantora. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Mantora 🛡️

The open-source run log for MCP agents. Get a shareable report to verify and reproduce what the agent did — plus a protective mode for common dangerous SQL.

PyPI

Mantora UI screenshot

Mantora focuses on making agent behavior reviewable and repeatable. It records the key evidence from each session and turns it into a Markdown report. Protective mode adds basic guardrails (block/warn rules) so you don’t learn about a bad query the hard way.

What you get

🔍 Session Logs

Capture the exact SQL and tool calls an agent makes for easy verification.

Session Logs

🛡️ Protective Mode

Basic guardrails that block or warn on destructive SQL patterns by default.

Protective Mode

🧾 Shareable Reports

One-click to generate a Markdown summary for Pull Requests or Slack.

Shareable Reports

Quick Start

1. Install

pipx install "mantora[duckdb,postgres]"

2. Connect Your Agent

Configure your MCP client (e.g., claude_desktop_config.json or Cursor Settings) to run the Mantora proxy. No target configuration is needed here!

{
  "mcpServers": {
    "mantora": {
      "command": "mantora",
      "args": ["mcp"]
    }
  }
}

3. Run the Control Room (UI)

Start the dashboard to manage your connections and view logs in real-time:

mantora up

4. Configure Targets

Open the Control Room (http://localhost:3030) and use the target switcher in the top navigation bar to:

  1. Create new targets for your databases (DuckDB, Postgres, etc.).
  2. Activate the target you want your agent to use.
  3. Switch targets instantly without restarting your agent.

Note: For advanced configuration (safety policy, storage paths), you can use a mantora.toml file. See Configuration for details.

How it works

sequenceDiagram
    participant Agent as Claude/Cursor
    participant Mantora as Mantora 🛡️
    participant DB as Postgres/DuckDB

    Agent->>Mantora: "SELECT * FROM users"
    Note over Mantora: 1. Check Safety Policy
    Mantora->>DB: Execute Query
    DB-->>Mantora: Return Rows
    Note over Mantora: 2. Log Report (Async)
    Mantora-->>Agent: Relay Result

Daily Workflow

📋 Copy a PR Report

Don't paste messy screenshots. In the Session Summary, click "Copy for GitHub".

  • Result: A collapsible <details> block containing the SQL, execution time, and safety checks. Perfect for Pull Requests.

🛑 Review Blocked Mutations

If an agent tries to DROP TABLE users, Mantora intercepts it.

  • The Agent sees: "Error: Action blocked by safety policy."
  • You see: A red entry in the Mantora UI with the exact SQL that was blocked.

📤 Export Evidence

Need to archive a session?

  • Export JSON: Get the raw trace data.
  • Download Markdown: Get a readable log of the entire conversation.

Safety Defaults

Mantora is designed to be read-only safe out of the box.

Action Default Policy
SELECT ✅ Allowed
INSERT, UPDATE ⚠️ Requires Approval (Configurable)
DELETE (with WHERE) ⚠️ Requires Approval
DROP, TRUNCATE 🛑 Blocked
DELETE (no WHERE) 🛑 Blocked

Want to change this? See Configuration.

Supported Data Stores

  • DuckDB (Local files, MotherDuck)
  • Postgres (Direct connection, Supabase, Neon)
  • BigQuery, Snowflake, Databricks (Coming Soon)

All data is stored locally. See Privacy for details.

Documentation

Community

Found a bug? Have a feature request?

License

MIT © Joseph Wibowo

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Mantora

How do I install Mantora?

Run npx mantora, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Mantora safe to use with an AI agent?

Its trust score is 59 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Mantora still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.