# Quickstart (/dashboard/quickstart)

This guide walks you through deploying an MCP server from a GitHub repository and connecting it to an AI client.Prefer to have an agent do it? Copy the onboarding prompt and paste it into Cursor, Claude Code, or Codex — or fetch it directly at [manufact.com/prompt.md](https://manufact.com/prompt.md).<CopyPromptButton />## Choose your path [#choose-your-path]| Path                | Best for                              | Guide                                                                        |
| ------------------- | ------------------------------------- | ---------------------------------------------------------------------------- |
| Deploy from GitHub  | Full hosting, auto-deploys, analytics | This quickstart (below)                                                      |
| Connect by URL      | Server already hosted elsewhere       | [Connect an existing server](/dashboard/connect-existing-server)             |
| Build with an agent | Starting from scratch                 | [Onboarding → Create](/dashboard/onboarding#create) or copy the prompt above |First time in Manufact? The [onboarding wizard](/dashboard/onboarding) walks you through organization setup and these same three paths.## Before you start [#before-you-start]You need:- A [Manufact Cloud account](https://manufact.com/cloud): the Free plan covers your first server.
- One of: a GitHub repository with an MCP server, an existing MCP URL to connect, or a coding agent to scaffold a new project.If you don't have a server yet, use the agent prompt above, start from a template, or follow [Connect an existing server](/dashboard/connect-existing-server) if you already have a URL — see [Creating servers](/dashboard/servers).## 1. Create an organization [#1-create-an-organization]When you first sign in, the onboarding wizard asks you to create an organization. Organizations own servers, billing, and team members. You can create more organizations later from the organization switcher.## 2. Import your repository [#2-import-your-repository]![New server options: GitHub import, templates, and connect by URL](/screenshots/dashboard/quickstart/new-server-options.png)1) Go to **Servers** and click **New Server**.
2) Choose **Import from GitHub**.
3) If this is your first deploy, connect the Manufact GitHub App and grant it access to your repository. See [GitHub integration](/dashboard/integrations) for details.
4) Pick the repository you want to deploy.## 3. Configure the deployment [#3-configure-the-deployment]![Configure Deployment form for a Starter template](/screenshots/dashboard/quickstart/configure-deployment.png)On the **Configure Deployment** screen:- **Branch**: the branch to deploy as production (usually `main`).
- **Region**: leave on `AUTO`, or pick US / EU / APAC on the Startup plan and above.
- **Environment variables**: add any secrets or config your server needs. You can also paste the contents of a `.env` file to fill them in at once.
- **Advanced configuration** (optional), set a root directory for monorepos, watch paths, a Dockerfile path, or a framework preset. Manufact auto-detects most setups.Click **Deploy**. The pipeline clones your code, analyzes it, builds it, deploys it, and runs health checks before routing traffic to it, you can follow each step live.## 4. Get your server URL [#4-get-your-server-url]Once the deployment is healthy, your server is available at its gateway URL, shown in the header of every server page:```text
https://<your-slug>.run.mcp-use.com/mcp
```Copy it from the URL chip, or customize the slug and add custom domains on the [Domains](/dashboard/domains) tab.## 5. Connect a client [#5-connect-a-client]Click **Add to client** next to the server URL to get one-click installs and ready-made config snippets for Cursor, VS Code, Claude Desktop, Claude Code, Gemini CLI, Codex CLI, and the mcp-use SDKs. See [Connecting clients](/dashboard/connect-clients).You can also test immediately in the dashboard: the **Chat** tab connects an agent to your server, and **Tools**, **Prompts**, and **Resources** list everything your server exposes.## Next steps [#next-steps]<Cards>
  <Card title="Browse templates" href="https://manufact.com/templates" description="Deploy-ready scaffolds, OAuth providers, example apps, and other MCP frameworks." />

  <Card title="Deployments & environments" href="/dashboard/deployments" description="Automatic deploys on push, preview environments per branch." />

  <Card title="Usage & traffic" href="/dashboard/analytics" description="See who is calling your tools and from which clients." />

  <Card title="Publish checks" href="/dashboard/publish-checks" description="Validate protocol compliance before distributing your server." />
</Cards>
