Skip to content

Latest commit

 

History

History
94 lines (63 loc) · 1.8 KB

File metadata and controls

94 lines (63 loc) · 1.8 KB

Installation Guide

Quick Install (one-liner)

curl -fsSL https://agentralabs.tech/install/veritas | bash

Downloads a pre-built agentic-veritas-mcp binary, installs to ~/.local/bin/, and merges the MCP server config into Claude Desktop and Claude Code. Requires curl and jq.

Install by environment

# Desktop MCP clients (auto-merge Claude configs)
curl -fsSL https://agentralabs.tech/install/veritas/desktop | bash

# Terminal-only (no desktop config writes)
curl -fsSL https://agentralabs.tech/install/veritas/terminal | bash

# Remote/server host (no desktop config writes)
curl -fsSL https://agentralabs.tech/install/veritas/server | bash

Server auth

Cloud/server runtime cannot read files from your laptop directly.

export AGENTIC_TOKEN="$(openssl rand -hex 32)"

All MCP clients must send Authorization: Bearer <same-token>.


1. Rust CLI

cargo install agentic-veritas-cli

This installs the averitas binary.

2. MCP Server

cargo install agentic-veritas-mcp

Claude Desktop config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "agentic-veritas": {
      "command": "agentic-veritas-mcp",
      "args": ["serve"]
    }
  }
}

Claude Code config

claude mcp add agentic-veritas agentic-veritas-mcp serve

3. Build from Source

git clone https://github.com/agentralabs/agentic-veritas.git
cd agentic-veritas
cargo build --workspace --release

Binaries are in target/release/.

4. npm (WASM)

npm install @agenticamem/veritas

Requirements

  • Rust: 1.75+ (for building from source)
  • OS: macOS, Linux, Windows (WSL)

Troubleshooting

See docs/public/troubleshooting.md.