Skip to content

Installation

CTO T (Manus AI / GODEL) edited this page Mar 1, 2026 · 3 revisions

Installation Guide

Setup VerifiMind™ PEAS for Claude, Cursor, VS Code, and other MCP clients


Prerequisites

  • An MCP-compatible client (Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, etc.)
  • Node.js 18+ (for npx mcp-remote bridge, if needed)

Connection Methods

Method 1: Streamable-HTTP (Recommended)

For clients that support streamable-http transport natively (Cursor, VS Code, Windsurf):

URL: https://verifimind.ysenseai.org/mcp/

Important: Always include the trailing slash /mcp/.

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "verifimind": {
      "url": "https://verifimind.ysenseai.org/mcp/",
      "transport": "streamable-http"
    }
  }
}

Method 2: mcp-remote Bridge

For clients that require stdio transport (Claude Desktop):

Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "verifimind": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://verifimind.ysenseai.org/mcp/"]
    }
  }
}

Claude Code (Terminal)

claude mcp add -s user verifimind -- npx -y mcp-remote https://verifimind.ysenseai.org/mcp/

Verification

After connecting, verify the server is working:

  1. Health Check: Visit verifimind.ysenseai.org/health — should return v0.4.5 with byok_live: true
  2. Tools List: Your MCP client should show 10 tools (4 core + 6 template)
  3. Test Query: Try Use consult_agent_x to briefly analyze the AI validation market

Troubleshooting

Common Issues

Issue Solution
Tools not showing Remove and re-add the MCP server connection (clears schema cache)
Connection timeout Check if your firewall allows HTTPS to verifimind.ysenseai.org
"Session expired" Reconnect — sessions are ephemeral by design
Stale tool schemas Delete the MCP server entry and add it fresh

Full Troubleshooting Guide

See docs/MCP_Server_Troubleshooting_Guide.md in the repository.


Official MCP Registry

VerifiMind PEAS is listed on the official MCP Registry: registry.modelcontextprotocol.io/?q=verifimind


← Back to Home

Clone this wiki locally