Once your deployment on Alpic is successful, you get a remote URL to connect to your MCP server.
MCP Server Overview

Test and debug your MCP server with the MCP Inspector

While in development mode, you can use the MCP Inspector to test and debug your MCP server:
  1. Launch the MCP Inspector
    npx @modelcontextprotocol/inspector
    
  2. Select Streamable HTTP transport.
  3. Add your MCP server URL (e.g. https://mcp-server-XXXXXXX.alpic.live).
  4. Click Connect.
The status should change to Connected, and you should be able to access all of your ressources, prompts and tools to test them via the inspector UI.
The MCP Inspector is particularly useful for debugging authentication issues, testing tool parameters, and verifying that your server responds correctly to different requests.

Connect your MCP server to any compatible MCP client

You can also connect your MCP server to any MCP client supporting SSE or Streamable HTTP transport. Below are some configuration examples:
{
  "mcpServers": {
    "your-server-name": {
      "url": "https://mcp-server-XXXXXXX.alpic.live",
      "transport": "http"
    }
  }
}
Replace https://mcp-server-XXXXXXX.alpic.live with your actual MCP server URL.