# Instantly

This Model Context Protocol (MCP) server acts as a bridge between AI agents and the Instantly.ai platform. It exposes tools allowing automated systems to fetch campaign lists, retrieve specific campa…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add orchidautomation/instantly-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list orchidautomation/instantly-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get orchidautomation/instantly-mcp list-campaigns

# Call a tool
npx -y @smithery/cli@latest tool call orchidautomation/instantly-mcp list-campaigns '{}'
```

## Tools (6)

- `list-campaigns` — Fetches a summarized list of all campaigns, including name, ID, status, timestamps, PL value, tracking settings, daily …
- `get-campaign-analytics` — Fetches detailed performance metrics for one or multiple campaigns. For a single campaign use 'id', for multiple campai…
- `get-campaign-analytics-overview` — Fetches aggregated performance metrics across one or multiple campaigns. For a single campaign use 'id', for multiple c…
- `get-daily-campaign-analytics` — Fetches daily performance metrics for specified campaigns within a date range. Returns an array of objects, each repres…
- `get-campaign-steps-analytics` — Fetches performance metrics broken down by individual steps and variants within specified campaigns. Returns an array o…
- `get-campaign` — Fetches the full configuration details for a single campaign, specified by its unique ID.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get orchidautomation/instantly-mcp <tool-name>
```

---

Source: https://github.com/orchidautomation/smithery_instantly-MCP
