Metadata-Version: 2.4
Name: mantora
Version: 0.2.1
Summary: Local MCP proxy + observability session store + UI server
Project-URL: Homepage, https://github.com/josephwibowo/mantora-mcp
Project-URL: Repository, https://github.com/josephwibowo/mantora-mcp
Project-URL: Issues, https://github.com/josephwibowo/mantora-mcp/issues
Author: Mantora contributors
License: MIT License
        
        Copyright (c) 2026 Mantora contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: fastapi,llm,mcp,observability,proxy
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.12
Requires-Dist: fastapi>=0.110
Requires-Dist: jinja2>=3.1
Requires-Dist: mcp>=1.0
Requires-Dist: pydantic>=2.6
Requires-Dist: rich>=13.0
Requires-Dist: sqlglot>=28.6.0
Requires-Dist: uvicorn[standard]>=0.27
Provides-Extra: all
Requires-Dist: duckdb; extra == 'all'
Requires-Dist: mcp-server-duckdb; extra == 'all'
Requires-Dist: mcp-server-postgres; extra == 'all'
Provides-Extra: duckdb
Requires-Dist: duckdb; extra == 'duckdb'
Requires-Dist: mcp-server-duckdb; extra == 'duckdb'
Provides-Extra: postgres
Requires-Dist: mcp-server-postgres; extra == 'postgres'
Description-Content-Type: text/markdown

# Mantora

Mantora is a local-first MCP observer: a lightweight UI + proxy for inspecting LLM data access (sessions, tool calls, results) with protective defaults.

## Install

```bash
pipx install "mantora[duckdb]"
# or
uv tool install "mantora[duckdb]"
```

Extras:
- `mantora[duckdb]` installs DuckDB connector dependencies
- `mantora[postgres]` installs Postgres connector dependencies
- `mantora[all]` installs both

## Usage

```bash
mantora up
mantora --help
mantora --version
```

Repository: https://github.com/josephwibowo/mantora-mcp
