Skip to main content

Prerequisites

RequirementVersion
Python3.10 or higher
Package managerpip, uv, or poetry

Install the SDK

pip install concierge-sdk

CLI Tools

The concierge CLI is included with the SDK. It provides three commands:

concierge init:Scaffold a new project

concierge init my-project
cd my-project
This creates a project with:
  • main.py: a working MCP server with example stages
  • requirements.txt: dependencies pre-configured
  • settings.json: project configuration for deployment
  • README.md: project documentation

Run locally

python main.py
Starts your MCP server locally. Connect to it from any MCP client (Claude Desktop, Cursor, etc.).

concierge deploy:Deploy to Concierge Cloud

concierge deploy
Deploys your server and gives you a public URL. Your server appears in the Concierge Platform dashboard with logs, analytics, and evaluation tools.

Verify Installation

python -c "from concierge import Concierge; print('Ready')"

Quickstart

Build your first Concierge server →