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

# Deploy on Alpic Button

> How to distribute your MCP server template Github repository to Alpic users

## How does it work?

The **Deploy on Alpic** button allows users to deploy a new project through the Alpic Project creation flow, while cloning the source Git repository to their own GitHub namespace.

It can be used to easily add a 1-click Alpic deployment option to your MCP framework, starter template or project.

## Add your own Deploy Button to your repository

Use the snippets below in your Git repositories or your dashboards for users to deploy, replacing the repositoryUrl in the query parameter with your own public git repository URL.

<CodeGroup>
  ```md Markdown theme={null}
  [![Deploy on Alpic](https://assets.alpic.ai/button.svg)](https://app.alpic.ai/new/clone?repositoryUrl=https://github.com/alpic-ai/mcp-server-template-nodejs)
  ```

  ```html HTML theme={null}
  <a href="https://app.alpic.ai/new/clone?repositoryUrl=https://github.com/alpic-ai/mcp-server-template-nodejs">
    <img src="https://assets.alpic.ai/button.svg" alt="Deploy on Alpic" />
  </a>
  ```

  ```txt URL theme={null}
  https://app.alpic.ai/new/clone?repositoryUrl=https://github.com/alpic-ai/mcp-server-template-nodejs
  ```
</CodeGroup>

The end-result should look like this:
[![Deploy on Alpic](https://assets.alpic.ai/button.svg)](https://app.alpic.ai/new/clone?repositoryUrl=https://github.com/alpic-ai/mcp-server-template-nodejs)

<Note>Currently, the Deploy on Alpic Button only supports GitHub repositories.</Note>
