INDIVIDUAL MCP TOOL
verify_email_otp
Verifies a 6-digit email code and returns a verificationToken valid for ~30 minutes.
LIVE ENDPOINT
https://core-api.gvrn.ai/incorporation-mcp
Connect to this endpoint to inspect the live schema for verify_email_otp and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests sending messages.
Parent server
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.
Related tools
get_incorporation_guide— Returns the full GVRN incorporation workflow guide: the fields collected, the email-verification steps, and the review lifecycle.request_email_otp— Sends a 6-digit verification code to the given email address.create_incorporation_draft— Creates a new incorporation request draft bound to the verified email, using any fields provided.update_incorporation_draft— Adds or corrects fields on an existing draft (patch semantics: only provided fields are changed; array fields are replaced whole).submit_incorporation— Submits a draft for review by the GVRN team and returns the request status.get_incorporation_status— Returns the current status of an incorporation request (DRAFT → QUEUED_FOR_REVIEW → UNDER_REVIEW → COMPLETED).