INDIVIDUAL MCP TOOL
submit_incorporation
Submits a draft for review by the GVRN team and returns the request status.
LIVE ENDPOINT
https://incorporation-mcp.gvrn.ai
Connect to this endpoint to inspect the live schema for submit_incorporation and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
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://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.
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.verify_email_otp— Verifies a 6-digit email code and returns a verificationToken valid for ~30 minutes.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).get_incorporation_status— Returns the current status of an incorporation request (DRAFT → QUEUED_FOR_REVIEW → UNDER_REVIEW → COMPLETED).