INDIVIDUAL MCP TOOL
get_operation_schema
Fetch one provider API operation's full contract — method, path, parameters, request/response schemas — live from Alter's provider-spec catalog, plus the spec's source and freshness.
LIVE ENDPOINT
https://mcp.alterauth.com/mcp
Connect to this endpoint to inspect the live schema for get_operation_schema and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
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.alter-onboarding]
url = "https://mcp.alterauth.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"alter-onboarding": {
"type": "http",
"url": "https://mcp.alterauth.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: alter-onboarding
Remote MCP URL: https://mcp.alterauth.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": {
"alter-onboarding": {
"url": "https://mcp.alterauth.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"alter-onboarding": {
"type": "http",
"url": "https://mcp.alterauth.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "alter-onboarding",
"transport": "streamable-http",
"url": "https://mcp.alterauth.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_phases— List the lifecycle phases this server serves (setup, modify) and what each is for.list_skills— List the guidance Skills available on this server, with the phase each serves.get_started— Begin or change an Alter integration.next_step— Return the next step for a flow.sdk_integration— Return the Alter SDK wiring (install + client init + request) to write into the developer's codebase, for a language and setup goal.sdk_pattern— Return a runnable Alter SDK call pattern for a language: `proxy-call` (zero-egress proxy_request + HITL), `resolve-grant-by-user` (call as an end user via their delegated grant), or `delegate-managed-secret` (the operator-side delegation step).troubleshoot— Map a @alter-ai/cli exit code or error message to a remediation.verify_integration— Return a copy-pasteable recipe to VERIFY an integration works: `first-call` (code↔design, an audit row, correct attribution) or `per-user-isolation` (a multi-user/broker server runs two users under different credentials and rejects cross-user access).