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

# Quickstart

> Add DeepWiki to Prisma AIRS AI Gateway MCP Gateway and connect it to Claude.

This quickstart covers:

1. Adding the DeepWiki MCP server to your organisation's MCP Registry
2. Getting your MCP connection URL from your workspace
3. Using the URL in Claude (Desktop / Code) via MCP configuration

<Info>
  **Who does what:** MCP integrations can be added by **org admin and members**. The MCP server can be used by **workspace admin, manager, and members**.
</Info>

***

## 1) Add DeepWiki to MCP Registry

<Steps>
  <Step title="Open MCP Registry">
    Go to **MCP Registry** in your org settings, then click **Add Server**.
  </Step>

  <Step title="Fill in the server details">
    Enter the following:

    | Field                 | Value                                  |
    | --------------------- | -------------------------------------- |
    | **Name**              | `deepwiki-test-mcp-server`             |
    | **Short Description** | A short note about the MCP Integration |
    | **URL**               | `https://mcp.deepwiki.com/mcp`         |
    | **Slug**              | `deepwiki-test-mcp-server`             |
    | **Server Type**       | Http                                   |
    | **Auth Type**         | None                                   |

    <Note>
      DeepWiki is a public MCP server that doesn't require authentication, so set **Auth Type** to `None`. Learn more about [DeepWiki MCP](https://docs.devin.ai/work-with-devin/deepwiki-mcp).
    </Note>

    The form includes **Workspace Provisioning** settings. Select the workspace(s) that should have access to this MCP server.
  </Step>

  <Step title="Test & save">
    Click **Test Connection**, then **Add Server**.
  </Step>
</Steps>

***

## 2) Get Your Connection URL

Once enabled, go to the **MCP** page in your workspace sidebar and copy the DeepWiki connection URL.

The URL will look like:

```
https://aigw.portkey.ai/m/deepwiki-test-mcp-server/mcp
```

***

## 3) Use the URL in Claude (Desktop / Code)

Add a new MCP server that points to the AI Gateway URL. You have two authentication options:

<Tabs>
  <Tab title="OAuth (Recommended)">
    The simplest setup—just the URL, no credentials to manage:

    ```json theme={"system"}
    {
      "mcpServers": {
        "deepwiki": {
          "url": "https://aigw.portkey.ai/m/deepwiki-test-mcp-server/mcp"
        }
      }
    }
    ```

    On first use, Claude will prompt you to authenticate with the AI Gateway via OAuth 2.1. After you log in, your session is stored and refreshed automatically.

    <Info>
      **Best for:** Interactive use in Claude Desktop, Cursor, or VS Code. No API keys to create, rotate, or accidentally leak.
    </Info>
  </Tab>

  <Tab title="API Key">
    For programmatic access or when you prefer explicit credentials:

    ```json theme={"system"}
    {
      "mcpServers": {
        "deepwiki": {
          "url": "https://aigw.portkey.ai/m/deepwiki-test-mcp-server/mcp",
          "headers": {
            "Authorization": "Bearer <PORTKEY_API_KEY>"
          }
        }
      }
    }
    ```

    Get your AI Gateway API key at [stratacloudmanager.paloaltonetworks.com](https://stratacloudmanager.paloaltonetworks.com/). Use a **workspace user API key** with **`mcp invoke`** permissions.

    <Note>
      When creating your workspace API key, ensure it has **MCP Invoke** permissions enabled.
    </Note>

    <Info>
      **Best for:** CI/CD pipelines, backend services, or automated agents where interactive OAuth isn't possible.
    </Info>
  </Tab>
</Tabs>

<Note>
  Even though DeepWiki doesn't require authentication to the upstream server, you still need to authenticate with the AI Gateway (via OAuth or API key) to access the server through the gateway.
</Note>

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Add MCP Servers" icon="layer-group" href="/docs/aigw/product/mcp-gateway/internal-mcp-servers">
    Add internal and external MCP servers, configure authentication, and control access.
  </Card>

  <Card title="Using MCP Servers" icon="plug" href="/docs/aigw/product/mcp-gateway/using-mcp-servers">
    Connect MCP clients like Cursor, VS Code, Claude Desktop, or build your own integration.
  </Card>

  <Card title="Team Provisioning" icon="users" href="/docs/aigw/product/mcp-gateway/access-control">
    Control which teams and users can access which MCP servers and tools.
  </Card>

  <Card title="Observability" icon="chart-mixed" href="/docs/aigw/product/mcp-gateway/observability">
    Monitor and debug MCP tool calls with full context and logs.
  </Card>
</CardGroup>


## Related topics

- [Quickstart](/docs/aigw/product/agent-gateway/quickstart.md)
- [Agno AI](/docs/aigw/integrations/agents/agno-ai.md)
- [Unified Batch Inference](/docs/aigw/product/ai-gateway/batches.md)
- [Agent Gateway](/docs/aigw/product/agent-gateway.md)
- [Advanced code snippets and examples](/docs/aigw/product/agent-gateway/advanced-code-snippets-and-examples.md)
