> ## Documentation Index
> Fetch the complete documentation index at: https://docs.staging.alpic.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Playground

> How to access and test your MCP Server

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

<Frame>
  <img src="https://mintcdn.com/alpic-staging/SUgEP0peVh3Vy_OH/images/server-overview.png?fit=max&auto=format&n=SUgEP0peVh3Vy_OH&q=85&s=46d6d02721bf0c0738aa1ebdc44fea23" alt="MCP Server Overview" width="2846" height="1094" data-path="images/server-overview.png" />
</Frame>

### Try it instantly with the Playground

Every server deployed on Alpic comes with a built-in [Playground](/distribution/playground) at the `/try` path of your server URL. It lets you and your users test tools through a conversational AI interface directly in the browser — no client setup required.

### Test and debug your MCP server with the MCP Inspector

While in development mode, you can use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector) to test and debug your MCP server:

1. Launch the [MCP Inspector](https://github.com/modelcontextprotocol/inspector)

   ```bash theme={null}
   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.

<Tip>
  The MCP Inspector is particularly useful for debugging authentication issues, testing tool parameters, and verifying
  that your server responds correctly to different requests.
</Tip>

### 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:

<CodeGroup>
  ```json mcp.json theme={null}
  {
    "mcpServers": {
      "your-server-name": {
        "url": "https://mcp-server-XXXXXXX.alpic.live",
        "transport": "http"
      }
    }
  }
  ```

  ```json mcp.json (with Auth Bearer Token) theme={null}
  {
    "mcpServers": {
      "your-server-name": {
        "url": "https://mcp-server-XXXXXXX.alpic.live",
        "transport": "http",
        "headers": {
          "X-API-KEY": "your-api-key-here"
        }
      }
    }
  }
  ```
</CodeGroup>

<Warning>Replace `https://mcp-server-XXXXXXX.alpic.live` with your actual MCP server URL.</Warning>
