← Registry

AI & Machine Learning

virohanalife.com

Offers AI consultation services including booking slots and learning about Virohana's services.

x402 supported5 endpoints26 known toolsFirst detected July 25, 2026Last detected July 29, 2026

ENDPOINT 1

https://www.virohanalife.com/mcp/booking

No auth detected

MCP server metadata

Name
virohana-booking
Version
1.0.0
Capabilities
tools
Server instructions

Virohana consultation booking. Call list_consultation_slots, then request_consultation to reserve a slot and receive a Stripe payment link. The booking confirms only after the human completes the EUR 500 payment — nothing is charged automatically.

Known tools 2

list_consultation_slots

List available 60-minute paid AI-consultation slots with Akshay Shetty (EUR 500, timezone Europe/Tallinn).

Inferred read-only
request_consultation

Reserve a consultation slot and get a secure Stripe payment link.

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.virohana-booking]
url = "https://www.virohanalife.com/mcp/booking"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "virohana-booking": {
      "type": "http",
      "url": "https://www.virohanalife.com/mcp/booking"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: virohana-booking
Remote MCP URL: https://www.virohanalife.com/mcp/booking

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "virohana-booking": {
      "url": "https://www.virohanalife.com/mcp/booking"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "virohana-booking": {
      "type": "http",
      "url": "https://www.virohanalife.com/mcp/booking"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "virohana-booking",
  "transport": "streamable-http",
  "url": "https://www.virohanalife.com/mcp/booking"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://hire.virohanalife.com/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.virohanalife-com]
url = "https://hire.virohanalife.com/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "virohanalife-com": {
      "type": "http",
      "url": "https://hire.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: virohanalife-com
Remote MCP URL: https://hire.virohanalife.com/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "virohanalife-com": {
      "url": "https://hire.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "virohanalife-com": {
      "type": "http",
      "url": "https://hire.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "virohanalife-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "virohanalife-com",
  "transport": "streamable-http",
  "url": "https://hire.virohanalife.com/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://mcp.virohanalife.com/mcp

No auth detected

MCP server metadata

Name
virohana-site
Version
3.4.2
Capabilities
experimentalloggingprompts.listChangedresources.listChangedtools.listChangedextensions.io.modelcontextprotocol/ui
Server instructions

Virohana (Virohanalife OU, Tallinn) — the company website served as a live MCP server, so you or your AI assistant can ask what Virohana is, what it builds, and read its writing by calling tools instead of scraping a page. Start with start_here(), then about_virohana(), list_services()/service_detail(<id>), list_products()/product_detail(<id>), list_journal()/read_post(<slug>), and search_site(<query>). All tools are READ-ONLY and return only curated public content. Booking, podcasts, and an 'ask Akshay' advisor are planned but not available yet.

Known tools 9

start_here

Recommended first call: a short guided tour of what you can explore here.

Inferred read-only
about_virohana

What Virohana is, where it stands, and the principles behind everything it builds.

Inferred read-only
list_services

The services Virohana offers.

Inferred read-only
service_detail

Full detail for one service: what you get and how it works.

Inferred read-only
list_products

Shipped products Virohana built and runs for real customers.

Inferred read-only
product_detail

Full detail for one product: what it does, how it's built, and how to get it.

Inferred read-only
list_journal

The Virohana journal — essays and field notes, newest first.

Inferred read-only
read_post

Read one journal post in full (markdown body).

Potential side effects
search_site

One keyword search across everything — about, services, products, and the journal.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.virohana-site]
url = "https://mcp.virohanalife.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "virohana-site": {
      "type": "http",
      "url": "https://mcp.virohanalife.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: virohana-site
Remote MCP URL: https://mcp.virohanalife.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "virohana-site": {
      "url": "https://mcp.virohanalife.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "virohana-site": {
      "type": "http",
      "url": "https://mcp.virohanalife.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "virohana-site",
  "transport": "streamable-http",
  "url": "https://mcp.virohanalife.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 4

https://biz.virohanalife.com/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.virohanalife-com]
url = "https://biz.virohanalife.com/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "virohanalife-com": {
      "type": "http",
      "url": "https://biz.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: virohanalife-com
Remote MCP URL: https://biz.virohanalife.com/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "virohanalife-com": {
      "url": "https://biz.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "virohanalife-com": {
      "type": "http",
      "url": "https://biz.virohanalife.com/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "virohanalife-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "virohanalife-com",
  "transport": "streamable-http",
  "url": "https://biz.virohanalife.com/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 5

https://memory.virohanalife.com/mcp

No auth detected

MCP server metadata

Name
Agora x402 Marketplace
Version
3.4.4
Capabilities
experimentalloggingprompts.listChangedresources.listChangedtools.listChangedextensions.io.modelcontextprotocol/ui

Known tools 15

agora_catalog

FREE.

Inferred read-only
summarize_demo

FREE.

Inferred read-only
summarize

PAID (0.

Inferred read-only
fact_verify

PAID (0.

Inferred read-only
code_review

PAID (0.

Inferred read-only
research_brief

PAID (0.

Inferred read-only
notarize

PAID (0.

Inferred read-only
trust_check

PAID (0.

Inferred read-only
embed_batch

PAID (0.

Inferred read-only
mnemos_saas_info

FREE.

Inferred read-only
mnemos_provision

PAID (0.

Inferred read-only
mnemos_store

PAID (0.

Inferred read-only
mnemos_search

PAID (0.

Inferred read-only
mnemos_get_context

PAID (0.

Inferred read-only
mnemos_as_of

PAID (0.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agora-x402-marketplace]
url = "https://memory.virohanalife.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agora-x402-marketplace": {
      "type": "http",
      "url": "https://memory.virohanalife.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agora-x402-marketplace
Remote MCP URL: https://memory.virohanalife.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agora-x402-marketplace": {
      "url": "https://memory.virohanalife.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agora-x402-marketplace": {
      "type": "http",
      "url": "https://memory.virohanalife.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agora-x402-marketplace",
  "transport": "streamable-http",
  "url": "https://memory.virohanalife.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.