-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Setup VerifiMind™ PEAS for Claude, Cursor, VS Code, and other MCP clients
Last Updated: May 17, 2026 — v0.5.34, Phase 90 "Adoption First"
All 13 tools free forever under the Core Tools Always Free pledge. No registration required. No payment ever.
- An MCP-compatible client (Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, ChatGPT Codex CLI, OpenAI Agents SDK, etc.)
- Node.js 18+ (for
npx mcp-remotebridge — only if your client requires stdio transport)
Before you copy any example below, three things to know:
-
URL must end with trailing slash:
/mcp/(not/mcp)- Without the trailing slash, you get a
308 Permanent Redirectto/mcp/ - Programmatic SDK clients (
python-httpx,node,requests,axios) often fail to follow POST redirects per RFC 7538 → silent connection failure
- Without the trailing slash, you get a
-
Transport must be
streamable-http(NOThttp-sse, NOTsse)- This is the current MCP 2025-03-26 spec
- Legacy SSE is not supported
-
POST requests must include both Accept types:
Accept: application/json, text/event-stream- Missing the event-stream side returns
406 Not Acceptable - Managed clients (Claude/Cursor/VS Code/Agents SDK) handle this automatically; custom clients must set both
- Missing the event-stream side returns
For clients that support streamable-http transport natively (Cursor, VS Code, Windsurf, Codex CLI).
URL: https://verifimind.ysenseai.org/mcp/
Add to .cursor/mcp.json or .vscode/mcp.json:
{
"servers": {
"verifimind": {
"url": "https://verifimind.ysenseai.org/mcp/",
"transport": "streamable-http"
}
}
}For clients that require stdio transport (Claude Desktop, ChatGPT Codex CLI workarounds).
claude mcp add -s user verifimind -- npx -y mcp-remote https://verifimind.ysenseai.org/mcp/After this, restart Claude Code and type /mcp to see the 13 available tools.
Add to your config file:
| OS | Config Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
{
"mcpServers": {
"verifimind": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://verifimind.ysenseai.org/mcp/"]
}
}
}Restart Claude Desktop after saving.
For any custom MCP client using direct HTTP:
{
"mcpServers": {
"verifimind-genesis": {
"url": "https://verifimind.ysenseai.org/mcp/",
"transport": "streamable-http"
}
}
}For Python developers using the OpenAI Agents SDK:
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerStreamableHttp
async def main():
async with MCPServerStreamableHttp(
name="VerifiMind Genesis",
params={"url": "https://verifimind.ysenseai.org/mcp/"},
cache_tools_list=True,
) as server:
agent = Agent(
name="Validator",
instructions="Use VerifiMind tools to validate concepts.",
mcp_servers=[server],
)
result = await Runner.run(agent, "Use run_full_trinity to validate the concept 'AI-powered code review'")
print(result.final_output)
asyncio.run(main())pip install openai-agents required.
After connecting, verify the server is working:
curl https://verifimind.ysenseai.org/healthShould return JSON with "status": "healthy", "version": "0.5.34", "inference_mode": "live", and "tools": 13.
Your MCP client should show 13 tools:
-
Trinity validation (4) —
consult_agent_x,consult_agent_z,consult_agent_cs,run_full_trinity -
Template library (6) —
list_prompt_templates,get_prompt_template,export_prompt_template,register_custom_template,import_template_from_url,get_template_statistics -
Coordination tools (3, new in v0.5.16) —
coordination_handoff_create,coordination_handoff_read,coordination_team_status
Try in your MCP client:
"Use consult_agent_x to briefly analyze the AI validation market for MCP-based tools in 2026"
Or test the complete Trinity pipeline:
"Use run_full_trinity to validate the concept of an AI-powered code review tool"
| Issue | Likely Cause | Solution |
|---|---|---|
| 308 / silent connection fail | Missing trailing slash on /mcp
|
Use /mcp/ (with trailing slash) |
| 307 / wrong landing page | Client pointed at / not /mcp/
|
Configure full path including /mcp/
|
| 406 Not Acceptable | Missing dual Accept header | Send Accept: application/json, text/event-stream
|
| Tools not showing | Client cached old schema | Remove and re-add the MCP server connection |
| 403 Forbidden | Network-level OR Sentinel blocklist | Try different network; if still blocked, file Issue |
| Connection timeout | Firewall / proxy | Check HTTPS access to verifimind.ysenseai.org
|
| "Session expired" | Ephemeral session by design | Reconnect — sessions are stateless |
| 202 Accepted | NOT an error — normal streamable-http response | No action needed; client should continue listening on SSE |
See docs/MCP_Server_Troubleshooting_Guide.md for detailed per-status-code diagnostics, client-specific notes (Codex CLI bug workaround, Smithery auth issue, etc.), and transport-type clarifications.
VerifiMind PEAS is listed on the official MCP Registry: registry.modelcontextprotocol.io/?q=verifimind
Current published version: v3.11.0 (server.json), aligned with server v0.5.34.
The 13 tools let you:
- Validate any concept through the X → Z → CS Trinity (innovation + ethics + security in one call)
- Run per-agent BYOK — mix Gemini + Claude + GPT across the three agents in one Trinity call
- Browse and apply the prompt template library (X / Z / CS agent templates, taggable, versioned)
- Use the MACP coordination layer to create / read handoffs between AI agents in multi-agent FLYWHEEL workflows
- Read live methodology context from Resources (Genesis Master Prompt v4.2, validation history, project metadata)
Full features documentation: MCP_SERVER_FEATURES.md
This server is in Phase 90 "Adoption First" — monetization is on STANDBY. The pricing surface that earlier versions of this guide referenced (Pioneer $9/month tier) is no longer active. All 13 tools are free, and the Beta v0.6.0 milestone has been redefined as the Evaluation Roadmap M0 + M1 (credibility milestone, NOT commercial milestone).
If you want to help build the labeled evaluation dataset for the methodology (Evaluation Roadmap M2), register as an Early Adopter — UUID-only, consent-first, opt out anytime.
VerifiMind PEAS documentation · Current status · Live health · Public statements · MIT License
Runtime versions, models, routing, tool availability, policies, metrics, and deployment facts are owned by their linked live or release-bound sources.
Start Here
Operator Playbook
Textbook
Trust & Transparency
Evidence & Research
Project Links