Streamable HTTP MCP Server

Connect Your AI Agent

Directly attach Claude, ChatGPT, Grok, or Gemini to VirtMCU's simulation engine using the Model Context Protocol.

Stable MCP Endpoint URL

https://api.virtmcu.com/mcp

Requires authentication via HTTP Bearer token: Authorization: Bearer vtmcu_.... Get your key in the dashboard.

Claude (Anthropic)

Desktop & Connectors

Works with Claude Desktop and Claude Code via Streamable HTTP remote MCP.

Option A: Claude Desktop Configuration (claude_desktop_config.json)

{
  "mcpServers": {
    "virtmcu": {
      "url": "https://api.virtmcu.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_VIRTMCU_API_KEY"
      }
    }
  }
}

Option B: Claude Custom Connector UI

  1. Open Claude Settings > Connectors.
  2. Add a new Custom Connector.
  3. Set Server URL to https://api.virtmcu.com/mcp.
  4. Add Header: Authorization: Bearer vtmcu_....

ChatGPT (OpenAI)

Developer Mode / Custom MCP

Works with ChatGPT Developer Mode, GPT Custom Actions, and MCP connectors.

  1. In your GPT / Developer settings, add an MCP Server connection.
  2. Set Server URL to: https://api.virtmcu.com/mcp
  3. Select Bearer Token authentication.
  4. Paste your VirtMCU API Key (vtmcu_...).

Grok (xAI)

Custom Connectors

Works with Grok Custom Connectors for real-time firmware execution and debugging.

  1. Navigate to grok.com/connectors
  2. Click New Connector and choose Custom.
  3. Set Name to VirtMCU.
  4. Set Endpoint URL to: https://api.virtmcu.com/mcp
  5. Select Bearer Token authentication and paste your VIRTMCU_API_KEY.

Gemini (Google)

Streamable HTTP

Works with Gemini Enterprise Streamable HTTP connectors.

  1. In your Gemini / Vertex AI workspace, register a Streamable HTTP tool endpoint.
  2. Endpoint URL: https://api.virtmcu.com/mcp
  3. Authentication: Add Header Authorization: Bearer vtmcu_...
{
  "name": "virtmcu",
  "transport": "streamable-http",
  "url": "https://api.virtmcu.com/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_VIRTMCU_API_KEY"
  }
}

Developer Resources & Specifications