Skip to main content
ClaudeWave

VerifiMind PEAS: A Validation-First Methodology for Ethical and Secure Application Development Through Human-AI Co-Evolution

MCP ServersOfficial Registry2 stars1 forksPythonMITUpdated today
ClaudeWave Trust Score
79/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: NPX · mcp-remote
Claude Code CLI
claude mcp add verifimind-peas -- npx -y mcp-remote
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "verifimind-peas": {
      "command": "npx",
      "args": ["-y", "mcp-remote"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<div align="center">
  <img src="docs/assets/branding/VerifiMind-PEAS-Logo-transparent.png" alt="VerifiMind PEAS" width="200"/>

  # VerifiMind PEAS

  **An opinionated MCP server for structured multi-LLM critique.**

  Three specialized agents — Innovation, Ethics, Security — review your concept before you build it. Multi-vendor (Gemini · Claude · GPT · Groq · Cerebras · Mistral · Ollama). Free, open-source, MCP-native.

  [![Version](https://img.shields.io/badge/version-v0.6.0--Beta-blue.svg)](CHANGELOG.md)
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
  [![Status](https://img.shields.io/badge/status-Operational-success.svg)](SERVER_STATUS.md)
  [![MCP Registry](https://img.shields.io/badge/MCP%20Registry-Listed-purple)](https://registry.modelcontextprotocol.io/?q=verifimind)
  [![Health](https://img.shields.io/badge/Health-LIVE-success)](https://verifimind.ysenseai.org/health)
  [![Genesis DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17972751.svg)](https://doi.org/10.5281/zenodo.17972751)
  [![MACP Thesis DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.20399789.svg)](https://doi.org/10.5281/zenodo.20399789)
</div>

---

## Quick Start

> Use `streamable-http` transport and the trailing slash `/mcp/`. See [docs/MCP_Server_Troubleshooting_Guide.md](docs/MCP_Server_Troubleshooting_Guide.md) if you hit issues.

**Claude Code** (one command):
```bash
claude mcp add -s user verifimind -- npx -y mcp-remote https://verifimind.ysenseai.org/mcp/
```

**Claude Desktop** ([macOS](~/Library/Application%20Support/Claude/claude_desktop_config.json) · [Windows](%APPDATA%\Claude\claude_desktop_config.json)):
```json
{
  "mcpServers": {
    "verifimind": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://verifimind.ysenseai.org/mcp/"]
    }
  }
}
```

**Cursor / VS Code Copilot** (`.cursor/mcp.json` or `.vscode/mcp.json`):
```json
{
  "servers": {
    "verifimind": {
      "url": "https://verifimind.ysenseai.org/mcp/",
      "transport": "streamable-http"
    }
  }
}
```

After [registering](https://verifimind.ysenseai.org/register), add `--header "X-VerifiMind-UUID:${VERIFIMIND_UUID}"` to opt into the personal usage dashboard at `/early-adopters/dashboard/{uuid}`. Registration is optional.

---

## What this is

VerifiMind PEAS is an MCP server that runs your concept through **three specialized LLM judges in sequence**:

| Agent | Role | Question it answers |
|---|---|---|
| **X (Innovation)** | Innovation & competitive positioning | "Is this novel? What's the prior art? What's the strategic angle?" |
| **Z (Ethics)** | Ethics, compliance, 21-framework jurisdictional check | "What risks does this raise? GDPR, EU AI Act, SG MGF, etc." |
| **CS (Security)** | Security validation, OWASP Agentic AI Top 10 | "What can break? What's the attack surface? What's the reasoning-layer audit say?" |

Each agent sees the prior agents' reasoning. You get a unified assessment with scores, recommendations (PROCEED / REVISE / REJECT), and full reasoning chains.

**What this is not:** "Verification" in the formal-methods sense. The output is structured multi-LLM critique, not a mathematical proof. We make that distinction explicitly.

---

## The 13 tools

All 13 tools are **free for everyone** under the [Core Tools Always Free pledge](#core-tools-always-free-pledge).

### Trinity validation (4 tools)
- `consult_agent_x` — Innovation analysis with competitive positioning
- `consult_agent_z` — Ethics review with 21-framework jurisdictional coverage
- `consult_agent_cs` — Security validation, OWASP Agentic AI Top 10
- `run_full_trinity` — X → Z → CS pipeline with chain-of-thought, unified assessment

### Template management (6 tools)
- `list_prompt_templates` — Browse templates by agent, category, or tag
- `get_prompt_template` — Retrieve a template by ID
- `export_prompt_template` — Export to Markdown or JSON
- `register_custom_template` — Register a new template at runtime
- `import_template_from_url` — Import from a GitHub Gist or raw URL
- `get_template_statistics` — Registry stats by agent / phase / type

### Coordination (3 tools)
- `coordination_handoff_create` — Create a structured MACP v2.2 handoff record
- `coordination_handoff_read` — Read the most recent coordination handoff(s)
- `coordination_team_status` — Aggregate team state across stored handoffs

> **Tier identity, not paywall.** `pioneer_key` is an optional namespace identifier — omit it and your records land in the shared `"anonymous"` namespace. No tier blocks any tool.

---

## Core Tools Always Free Pledge

> All VerifiMind PEAS validation tools are free to use, forever. No paywall, no premium tier for tool access. Rate limits apply for system health only (not as monetization). Paid services, when they launch, will be consultation reports — separate from the tools.

Ratified by L (CEO) + Alton (Human Orchestrator) + T (CTO) on May 9, 2026. Active in production since v0.5.28 (May 10, 2026).

**Rate limits (system health, equal for all tiers):**
| Tier | Identity | Limit |
|---|---|---|
| Anonymous | IP only | 10 req/60s |
| Scholar | UUID (free registration) | 30 req/60s |
| EA / PILOT | UUID + email | 100 req/60s |

---

## Methodology overview

VerifiMind PEAS productizes the **multi-judge LLM evaluation pattern** — a well-established approach in the AI evaluation literature — into an opinionated MCP server with three specialized roles, a Genesis Master Prompt continuity layer, and a multi-vendor BYOK architecture.

**What's ours:**
- Productization quality of the X / Z / CS specialization
- MCP-native exposure (works in Claude Code / Cursor / VS Code / ChatGPT Codex)
- Multi-vendor design (not locked to one LLM family)
- Genesis Master Prompt — stateful continuity across multi-model workflows
- 21-framework jurisdictional coverage in the Ethics agent (GDPR · EU AI Act · SG MGF · etc.)

**What's prior art:** Multi-judge LLM evaluation, LLM-as-judge scoring, multi-model orchestration. See [Related Work](#related-work) for citations.

We do not claim the underlying methodology is novel.

---

## Architecture

The full system architecture — from the foundational X / Z / CS multi-agent validation design through the Phase 90 production deployment (MCP transport, BYOK provider layer, security hardening, FLYWHEEL coordination) — is documented in a single comprehensive, fact-checked diagram:

**→ [VerifiMind-PEAS Architecture Diagram](docs/architecture/VerifiMind-PEAS-Architecture-Diagram.md)** (v0.6.0-Beta, June 2026)

---

## Related Work

VerifiMind PEAS builds on and acknowledges:

- **ChatEval** (Chan et al., 2023, [arXiv:2308.07201](https://arxiv.org/abs/2308.07201)) — Multi-agent debate framework
- **MAJ-EVAL** — Multi-Agent-as-Judge evaluation pattern
- **CollabEval** — Collaborative LLM evaluation with role-based agents
- **HELM** ([Stanford CRFM](https://crfm.stanford.edu/helm/)) — Holistic Evaluation of Language Models
- **Inspect** ([UK AI Safety Institute](https://inspect.ai-safety-institute.org.uk/)) — Open-source safety evaluation framework
- **G-Eval / GPTScore** — LLM-as-judge scoring methodologies

Our contribution: **productization quality**, **MCP integration path**, **multi-vendor architecture**, and the **Genesis Master Prompt** continuity layer.

---

## Status & Metrics

- **Server:** `v0.6.0-Beta "Adoption First"` — [verifimind.ysenseai.org](https://verifimind.ysenseai.org) · [/health](https://verifimind.ysenseai.org/health)
- **Landing Page:** [verifimind.io](https://verifimind.io)
- **Tests:** 252+ unit/integration tests pass per release
- **Tools:** 13 (all free)
- **Providers:** 7 (Gemini · Claude · GPT · Groq · Cerebras · Mistral · Ollama) — pluggable via BYOK
- **Protocols:** MACP v2.4.1 · Genesis v2.6.1

For honest live metrics, see [`/changelog`](https://verifimind.ysenseai.org/changelog). Detailed adoption metrics (weekly cohort, return rate, conversion) are tracked internally and reviewed in [iteration handoffs](https://github.com/creator35lwb-web/verifimind-genesis-mcp). We deliberately do not display unaudited "total users" numbers — they tend to include bots and dev sessions.

---

## Common mistakes

| Mistake | Fix |
|---|---|
| Using `https://verifimind.ysenseai.org/mcp` (no slash) | Use `/mcp/` with trailing slash — required by streamable-http transport |
| Connecting via `server.smithery.ai/...` | Smithery legacy was sunset March 1, 2026. Use the direct URL above. |
| Mixing transports | Use `streamable-http`, not `http-sse` |
| Trying to call coordination tools and seeing "PIONEER_TIER_REQUIRED" | You're on v0.5.27 or older — the paywall was removed in v0.5.28 (May 10, 2026). All 13 tools are now free. |

For a fuller troubleshooting guide, see [docs/MCP_Server_Troubleshooting_Guide.md](docs/MCP_Server_Troubleshooting_Guide.md).

---

## How to cite

If you use VerifiMind PEAS in research or a project, please cite. We'd love to hear about it — open a [GitHub Discussion](https://github.com/creator35lwb-web/VerifiMind-PEAS/discussions).

### VerifiMind PEAS (server)

```bibtex
@software{verifimind_peas_2026,
  author  = {Lee, Alton and {Manus AI} and {Claude Code}},
  title   = {VerifiMind PEAS: Multi-Agent AI Validation MCP Server},
  year    = {2026},
  url     = {https://github.com/creator35lwb-web/VerifiMind-PEAS},
  doi     = {10.5281/zenodo.17980791},
  note    = {Multi-vendor MCP server for structured multi-LLM critique}
}
```

[![VerifiMind DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17980791.svg)](https://doi.org/10.5281/zenodo.17980791)

### Genesis Methodology

```bibtex
@misc{genesis_methodology_2025,
  author  = {Lee, Alton and {Manus AI}},
  title   = {Genesis Prompt Engineering Methodology: Multi-Agent AI Validation Framework},
  year    = {2025},
  url     = {https://doi.org/10.5281/zenodo.17972751},
  doi     = {10.5281/zenodo.17972751}
}
```

[![Genesis DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17972751.svg)](https://doi.org/10.5281/zenodo.17972751)

###

What people ask about VerifiMind-PEAS

What is creator35lwb-web/VerifiMind-PEAS?

+

creator35lwb-web/VerifiMind-PEAS is mcp servers for the Claude AI ecosystem. VerifiMind PEAS: A Validation-First Methodology for Ethical and Secure Application Development Through Human-AI Co-Evolution It has 2 GitHub stars and was last updated today.

How do I install VerifiMind-PEAS?

+

You can install VerifiMind-PEAS by cloning the repository (https://github.com/creator35lwb-web/VerifiMind-PEAS) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is creator35lwb-web/VerifiMind-PEAS safe to use?

+

Our security agent has analyzed creator35lwb-web/VerifiMind-PEAS and assigned a Trust Score of 79/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains creator35lwb-web/VerifiMind-PEAS?

+

creator35lwb-web/VerifiMind-PEAS is maintained by creator35lwb-web. The last recorded GitHub activity is from today, with 1 open issues.

Are there alternatives to VerifiMind-PEAS?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy VerifiMind-PEAS to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: creator35lwb-web/VerifiMind-PEAS
[![Featured on ClaudeWave](https://claudewave.com/api/badge/creator35lwb-web-verifimind-peas)](https://claudewave.com/repo/creator35lwb-web-verifimind-peas)
<a href="https://claudewave.com/repo/creator35lwb-web-verifimind-peas"><img src="https://claudewave.com/api/badge/creator35lwb-web-verifimind-peas" alt="Featured on ClaudeWave: creator35lwb-web/VerifiMind-PEAS" width="320" height="64" /></a>

More MCP Servers

VerifiMind-PEAS alternatives