INDIVIDUAL MCP TOOL
get_install_code
Returns accessible form code with the route’s endpoint baked in, installation notes, the current status with next_action, and a test_command.
LIVE ENDPOINT
https://api.conform.centrst.com/mcp
Connect to this endpoint to inspect the live schema for get_install_code 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.conform]
url = "https://api.conform.centrst.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"conform": {
"type": "http",
"url": "https://api.conform.centrst.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: conform
Remote MCP URL: https://api.conform.centrst.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": {
"conform": {
"url": "https://api.conform.centrst.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"conform": {
"type": "http",
"url": "https://api.conform.centrst.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "conform",
"transport": "streamable-http",
"url": "https://api.conform.centrst.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
create_form— Creates a permanent form endpoint that delivers submissions to the given inbox by email.get_form_status— Returns the current status of a form endpoint and a next_action block.check_submission— Runs every check a real submission would — route active, access key, declared schema, remaining allowance — and stops before spending anything.send_test_submission— Sends a _test-marked submission through the form.get_service_info— Returns the deployment’s discovery document: endpoints, verification model, limits, delivery mode, and its storage/privacy posture (no submission storage).