← Registry

General Tools

gvrn.ai

Provides APIs for email verification and drafting incorporation requests for business registration.

2 endpoints14 known toolsFirst detected July 29, 2026Last detected July 29, 2026

ENDPOINT 1

https://core-api.gvrn.ai/incorporation-mcp

No auth detected

MCP server metadata

Name
gvrn-incorporation
Version
1.0.0
Capabilities
resources.listChangedtools.listChanged
Server instructions

GVRN Incorporation MCP — submit company incorporation requests for review by the GVRN corporate-secretarial (corpsec) team. Flow (three steps): 1. Verify the user's email ONCE, up front: ask for their email → request_email_otp → ask for the 6-digit code they received → verify_email_otp → verificationToken (valid ~30 min, reused by every other tool). 2. create_incorporation_draft with the verificationToken and whatever details the user has already given. Add more later with update_incorporation_draft only if the user volunteers more. 3. submit_incorporation as soon as the user confirms — do NOT hold submission back to fill gaps. A human corpsec specialist reviews every request and follows up on missing details via the verified email. Keep it light for the user: - Ask only for their email (required) and, ideally, a company name and jurisdiction. Everything else is optional — take what the user offers, never run through the field list question by question. - Never invent field values; leave unknown fields out. - Relay the draftId to the user so they can resume later. Drafts are only accessible with a token for the email that created them — if the token expires, re-verify the same email to continue. - Track progress after submission with get_incorporation_status. - This tool files a request for human review; it does not legally incorporate a company by itself.

Known tools 7

get_incorporation_guide

Returns the full GVRN incorporation workflow guide: the fields collected, the email-verification steps, and the review lifecycle.

Potential side effects
request_email_otp

Sends a 6-digit verification code to the given email address.

Potential side effects
verify_email_otp

Verifies a 6-digit email code and returns a verificationToken valid for ~30 minutes.

Potential side effects
create_incorporation_draft

Creates a new incorporation request draft bound to the verified email, using any fields provided.

Potential side effects
update_incorporation_draft

Adds or corrects fields on an existing draft (patch semantics: only provided fields are changed; array fields are replaced whole).

Inferred read-only
submit_incorporation

Submits a draft for review by the GVRN team and returns the request status.

Inferred read-only
get_incorporation_status

Returns the current status of an incorporation request (DRAFT → QUEUED_FOR_REVIEW → UNDER_REVIEW → COMPLETED).

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.gvrn-incorporation]
url = "https://core-api.gvrn.ai/incorporation-mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "gvrn-incorporation": {
      "type": "http",
      "url": "https://core-api.gvrn.ai/incorporation-mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: gvrn-incorporation
Remote MCP URL: https://core-api.gvrn.ai/incorporation-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": {
    "gvrn-incorporation": {
      "url": "https://core-api.gvrn.ai/incorporation-mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "gvrn-incorporation": {
      "type": "http",
      "url": "https://core-api.gvrn.ai/incorporation-mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "gvrn-incorporation",
  "transport": "streamable-http",
  "url": "https://core-api.gvrn.ai/incorporation-mcp"
}
MCP Inspector

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

ENDPOINT 2

https://incorporation-mcp.gvrn.ai

No auth detected

MCP server metadata

Name
gvrn-incorporation
Version
1.0.0
Capabilities
resources.listChangedtools.listChanged
Server instructions

GVRN Incorporation MCP — submit company incorporation requests for review by the GVRN corporate-secretarial (corpsec) team. Flow (three steps): 1. Verify the user's email ONCE, up front: ask for their email → request_email_otp → ask for the 6-digit code they received → verify_email_otp → verificationToken (valid ~30 min, reused by every other tool). 2. create_incorporation_draft with the verificationToken and whatever details the user has already given. Add more later with update_incorporation_draft only if the user volunteers more. 3. submit_incorporation as soon as the user confirms — do NOT hold submission back to fill gaps. A human corpsec specialist reviews every request and follows up on missing details via the verified email. Keep it light for the user: - Ask only for their email (required) and, ideally, a company name and jurisdiction. Everything else is optional — take what the user offers, never run through the field list question by question. - Never invent field values; leave unknown fields out. - Relay the draftId to the user so they can resume later. Drafts are only accessible with a token for the email that created them — if the token expires, re-verify the same email to continue. - Track progress after submission with get_incorporation_status. - This tool files a request for human review; it does not legally incorporate a company by itself.

Known tools 7

get_incorporation_guide

Returns the full GVRN incorporation workflow guide: the fields collected, the email-verification steps, and the review lifecycle.

Potential side effects
request_email_otp

Sends a 6-digit verification code to the given email address.

Potential side effects
verify_email_otp

Verifies a 6-digit email code and returns a verificationToken valid for ~30 minutes.

Potential side effects
create_incorporation_draft

Creates a new incorporation request draft bound to the verified email, using any fields provided.

Potential side effects
update_incorporation_draft

Adds or corrects fields on an existing draft (patch semantics: only provided fields are changed; array fields are replaced whole).

Inferred read-only
submit_incorporation

Submits a draft for review by the GVRN team and returns the request status.

Inferred read-only
get_incorporation_status

Returns the current status of an incorporation request (DRAFT → QUEUED_FOR_REVIEW → UNDER_REVIEW → COMPLETED).

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.gvrn-incorporation]
url = "https://incorporation-mcp.gvrn.ai"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "gvrn-incorporation": {
      "type": "http",
      "url": "https://incorporation-mcp.gvrn.ai"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: gvrn-incorporation
Remote MCP URL: https://incorporation-mcp.gvrn.ai

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": {
    "gvrn-incorporation": {
      "url": "https://incorporation-mcp.gvrn.ai"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "gvrn-incorporation": {
      "type": "http",
      "url": "https://incorporation-mcp.gvrn.ai"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "gvrn-incorporation",
  "transport": "streamable-http",
  "url": "https://incorporation-mcp.gvrn.ai"
}
MCP Inspector

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

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for gvrn.ai was fetched 2026-08-03T14:32:23.504Z and is being refreshed.

Trust status Trusted

gvrn.ai is assessed as Trusted: Domain has an established technology history spanning over a year.

Indexed

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