Skip to content
Last updated

MCP Server Integration

Connect iVALT Authentication APIs to AI development tools (Claude, ChatGPT, Cursor) via the Model Context Protocol. AI assistants can then generate accurate, API-specific code examples and provide context-aware guidance.


MCP Server Endpoint

https://iValt-dev-api.redocly.app/mcp

Quick Setup

Claude Desktop

Add to Claude configuration:

{
  "mcpServers": {
    "iValt": {
      "command": "node",
      "args": ["/path/to/mcp-client.js"],
      "env": {
        "MCP_SERVER_URL": "https://iValt-dev-api.redocly.app/mcp"
      }
    }
  }
}

Cursor IDE

  1. Settings → Extensions → MCP
  2. Add server:
    • Name: iValt
    • URL: https://iValt-dev-api.redocly.app/mcp
    • Type: HTTP

Generic HTTP MCP

{
  "name": "iValt MCP",
  "type": "http",
  "url": "https://iValt-dev-api.redocly.app/mcp"
}

Usage

Once connected, AI tools understand iVALT Authentication API endpoints, parameters, and schemas.

Example queries:

  • "Show me how to call the verify-user endpoint in JavaScript"
  • "What parameters are required for validate/global/auth?"
  • "Generate a complete authentication flow example"

Benefits

  • API-aware code generation - Accurate endpoints, headers, and request formats
  • Schema context - AI understands required parameters and response structures
  • Safe - Documentation-only access, no production data

Troubleshooting

Not connecting? Verify the URL, restart your AI tool, and ensure MCP is enabled in settings.

Generic responses? Explicitly mention "iVALT" or "iVALT Authentication API" in your queries.