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

# launch • AI Agent SDK

> launch: Launch all agents as a single API endpoint (HTTP) or an MCP server.

# launch

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**AgentTeam**](../classes/AgentTeam) class in the [**agents**](../modules/agents) module.

Launch all agents as a single API endpoint (HTTP) or an MCP server.
In HTTP mode, the endpoint accepts a query and processes it through all agents in sequence.
In MCP mode, an MCP server is started, exposing a tool to run the agent workflow.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def launch(path: str, port: int, host: str, debug: bool, protocol: str) -> Any
```

## Parameters

<ParamField query="path" type="str" required={false} default="'/agents'">
  API endpoint path (default: '/agents') for HTTP, or base path for MCP.
</ParamField>

<ParamField query="port" type="int" required={false} default="8000">
  Server port (default: 8000)
</ParamField>

<ParamField query="host" type="str" required={false} default="'0.0.0.0'">
  Server host (default: '0.0.0.0')
</ParamField>

<ParamField query="debug" type="bool" required={false} default="False">
  Enable debug mode for uvicorn (default: False)
</ParamField>

<ParamField query="protocol" type="str" required={false} default="'http'">
  "http" to launch as FastAPI, "mcp" to launch as MCP server.
</ParamField>

### Returns

<ResponseField name="Returns" type="Any">
  None
</ResponseField>

## Uses

* `logging.warning`
* `rstrip`
* `display_error`
* `logging.error`
* `FastAPI`
* `uuid.uuid4`
* `request.json`
* `HTTPException`
* `request.form`
* `asyncio.iscoroutinefunction`

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/agents/agents.py#L1591">
  `praisonaiagents/agents/agents.py` at line 1591
</Card>
